Wednesday, July 24, 2024
4 changes · saas-17.2
Resolved issues and error corrections
Restaurant point-of-sale orders with customer notes can now be validated without triggering an error. This prevents checkout interruptions for staff and helps ensure smoother order processing when notes are added.
Original PR description
Before this commit, validating an order in the PoS restaurant module with a customer note attached would result in a KeyError. This issue occurred because the customer note was incorrectly processed in the note history, leading to unexpected behavior. Enterprise PR: https://github.com/odoo/enterprise/pull/67210 opw-4059220 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The product catalog now shows the correct quantity and selected product when opened from manufacturing orders and bills of materials. This helps users choose and verify products accurately, reducing mistakes during manufacturing setup.
Original PR description
Before this commit ============== When we were clicking on the product catalog in MO and BOM it was not showing the correct quantity and correct highlighted product selected in the MO and BOM. After this commit ============= This feature is fixed in this commit, correct quantity and highlighted product is shown. task-3944909
This fixes an issue in the web testing framework where modules could be allowed based on partial name matches. The change ensures only exact addon names are accepted, reducing the risk of incorrect test modules being started.
Original PR description
Before this PR, to filter modules that a module set required, the addon name was searched within the list of allowed addons *stringified and joined* with a simple call to "includes", which means that a partial match with an addon's name would allow the module to be started. This has been fixed by checking that the full addon's name appears in the list of allowed addons. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The spreadsheet component was updated to the latest available version for this Odoo release. This fixes a visual issue where cell A1 appeared hovered by default, making spreadsheet interactions clearer for users.
Original PR description
### Contains the following commits: https://github.com/odoo/o-spreadsheet/commit/6c6574338 [REL] 17.2.18 Task: 0 https://github.com/odoo/o-spreadsheet/commit/2e866045f [FIX] grid_overlay: A1 is hovered by default Task: 4042621 Co-authored-by: Anthony Hendrickx (anhe) <anhe@odoo.com> Co-authored-by: Alexis Lacroix (laa) <laa@odoo.com> Co-authored-by: Lucas Lefèvre (lul) <lul@odoo.com> Co-authored-by: Dhrutik Patel (dhrp) <dhrp@odoo.com> Co-authored-by: Adrien Minne (adrm) <adrm@odoo.com> Co-authored-by: Mehdi Rachico (mera) <mera@odoo.com> Co-authored-by: Rémi Rahir (rar) <rar@odoo.com> Co-authored-by: Pierre Rousseau (pro) <pro@odoo.com> Co-authored-by: Vincent Schippefilt (vsc) <vsc@odoo.com>