Friday, June 28, 2024
3 changes
1 change
Enhancements to existing features
Survey certifications now load their list of questions much faster. This reduces waiting time for users and improves performance for large or complex surveys.
Original PR description
Old code take ~5s of python, now less than 0.5s for a certification on our prod.
1 change
Enhancements to existing features
The manufacturing shop floor interface has been refined to make common actions clearer and reduce confusion for operators. Dialog sizing, button labels, visual cues, and menu options were adjusted so users see more accurate actions at the right time.
Original PR description
In this commit: ===================== - resized the Add Component modal to medium size. - renamed 'Open Backend MO' to 'Open Manufacturing Order' in the MRP menu dialog. - updated the behavior of the 'Register Production' button to only be crossed out upon clicking the validate button in the register production dialog. - styled the 'Register Production' button as a link. - made 'Print Barcode Commands' invisible when the work order is not activated. - replaced fa-plus icon with gear icon in shop floor module. task-3836580
1 change
Enhancements to existing features
This update improves the performance of HR contract automation by checking calendar conditions once per batch instead of for each individual record. This reduces unnecessary processing and speeds up automation workflows, particularly when dealing with large numbers of contracts.
Original PR description
Avoid to check calendar for each record. Follows the logic of the community PR: https://github.com/odoo/odoo/pull/167310 Forward-Port-Of: odoo/enterprise#65741 Forward-Port-Of: odoo/enterprise#65417