Tuesday, November 17, 2020
4 changes · master
Resolved issues and error corrections
Abandoned cart detection now uses the delay configured for each individual website instead of applying a fixed one-hour delay. This helps businesses with multiple websites send cart recovery actions at the right time for each site and audience.
Original PR description
Before this commit the search for abandoned carts was always using a delay of one hour After this commit the search for abandoned carts uses the specific cart abandoned delay configured for each website Description of the issue/feature this PR addresses: https://github.com/odoo/odoo/pull/59709 Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix disables bulk editing on selected onboarding list views so users can open records normally during setup. It reduces confusion in the onboarding flow for accounting, purchasing, and sales by preventing users from getting stuck after selecting records.
Original PR description
Removing multi_edit="1" from the treeviews because of when user tend to get 'stuck' through onboarding because of multi edit feature. When records are selected user can't open that records just when they leaves from multi edit / mass edition then that feature will works. **TaskID** : 2373161 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes several Planning issues so users see the right schedule period, avoid template actions where they do not apply, and have clearer date displays. It helps managers send monthly planning accurately and reduces confusion when creating or reviewing shifts.
This update corrects several issues affecting credit time contracts and salary simulation, including employer cost calculations, holiday-adjusted wages, contract end dates, and salary indexing percentages. It also prevents salary simulation for full-time credit time contracts where it would produce misleading results, improving payroll accuracy and user confidence.
Original PR description
This commit addresses some issues related to the credit time contracts and
the salary simulator.
After this commit:
* The salary simulator will show the correct Employer Cost
* The contract created with extra time off will have the right
wage_with_holidays
* When using the salary configurator on a credit_time contract,
the date_end of the contract will be copied over
* Let the user see and change the time_credit_full_time_wage when
the credit time is Full Time (0h worked and wage = 0)
* Correct percentage issue in salary indexing
* The system will prevent using the simulator for full time
credit time contracts
related PR's: odoo/odoo#61512, odoo/upgrade#1939