Monday, April 19, 2021
2 changes · master
Resolved issues and error corrections
The stock picking screen no longer includes a duplicated Detailed Operations tab that was previously used for styling. This prevents confusion and editing issues in tools like Odoo Studio while keeping the same business functionality.
Original PR description
Detailed Operations tab of a stock.picking was duplicated for style purpose in 30f2ad8c4. But this caused issue eg. in studio because the same field with very similary path was being edited. Since having duplicate fields with same path is not very well supported, this commit remove the duplication after a CSS fix has been done in web_enterprise after which it is no longer required. opw-2480311 note: enterprise PR that allow to do this change: https://github.com/odoo/enterprise/pull/17571
This fix prevents employee billing mappings from recalculating hourly prices just because the currency is updated. Users can now manually edit and keep the price on field service project forms when the related sales module is installed.
Original PR description
Before this commit, the currency_id field has the same compute method than the price_unit field in the employee mapping. When the industry_fsm_sale module is installed, the price_unit is recomputed because of the currency_id and then the user cannot manually edit the price_unit in fsm project form view. This commit adds a compute for the currency_id field to not unnecessarily recompute the price unit in the employee mapping. Related PR: odoo/odoo#66181 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr