Monday, December 4, 2023
4 changes
Resolved issues and error corrections
This fix restores the hiding of the appraisal survey type option in the survey application. The appraisal type is only meant for the HR appraisal module and should not be visible to survey users. A recent technical change inadvertently made this option visible again, and this fix corrects that by targeting the appraisal option with updated styling rules.
Original PR description
In odoo/enterprise#38268, we have added a survey type to allow to simplify the survey creation by only displaying relevant options for the type chosen. We have also added the appraisal type in the hr_appraisal_survey module, and hidden it in the survey views because that type is only relevant for the appraisal module and we don’t want to see it in the survey app. From 16.4, that type is no longer hidden in the app survey. This fix solves the problem. Technical notes: Following the change in odoo/enterprise#37387 that makes "primary" the override of the survey form that hide the appraisal type, the appraisal type is no longer hidden in the survey app. This is because in the override, we add a class used in css to hide that option (no longer present in survey because of the primary). To avoid modifying view in stable, we target the "appraisal" option without that added class. Task-3613370 Forward-Port-Of: odoo/enterprise#51591
This update fixes a display issue in the Field Service module where partner names and cities were incorrectly breaking onto separate lines. The fix ensures this information displays properly on the same line, improving the readability of customer details in project sharing views.
Original PR description
This commit ensures the partner name and partner city are displayed in the same line. It also updates the code according to the changes made in community (see #144492) Task-3383519
This update corrects the configuration for the Chinese yuan offshore currency (CNH) to properly reference the newly added currency code. This ensures that currency rate systems correctly identify and process offshore Chinese yuan transactions without errors or mismatches.
Original PR description
[FIX] res_config: change the Chinese yuan offshore currency unique name/code to point to the newly added currency. complementary of [adding the CNH currency PR](https://github.com/odoo/odoo/pull/144331) opw-3599124 Forward-Port-Of: odoo/enterprise#51831
This update corrects how the Field Service Stock module references product quantities to align with recent changes in the core Odoo system. The fix ensures the module uses the correct field name for product quantity calculations, improving consistency across the system and preventing potential data handling issues.
Original PR description
Small refactoring to be coherent with odoo/odoo#144574 Correction of the changes of odoo/enterprise#48709