Tuesday, November 12, 2024
28 changes
Resolved issues and error corrections
This update clarifies the user interface for rounding methods in the Point of Sale settings. Previously, 'HALF-UP' was confusing, so the term has been changed to 'Nearest' to better align with user expectations and provide a more intuitive experience. This ensures accurate and easily understood calculations within the POS system.
Original PR description
The rounding method 'HALF-UP' is confusing for regular users when they see it in the UI. Replacing the user-facing term by the less specific 'Nearest' is clearer, since people naturally expect that to round halves up. This commit adapts an error message to the new term. [opw-4266444](https://www.odoo.com/odoo/all-tasks/4266444) Related to https://github.com/odoo/odoo/pull/186237 Forward-Port-Of: odoo/enterprise#73285
This update resolves an issue where helpdesk tickets created from child contacts couldn't access products associated with their parent contacts. Previously, this limitation existed across several Odoo versions. This fix ensures that child contacts can now correctly see and utilize products linked to their parent contacts within the helpdesk system.
Original PR description
Steps to reproduce: - Install helpdesk_stock and Studio - Create 2 contacts, with one parent of the other - Create a quotation for parent contact with any product - Create a quotation for child contact with another product - Helpdesk app > Create a ticket - Add the 'product_id' field with studio - (Under 'Existing Fields' search product) - (View tab > Show invisible elements > Find product field > untick invisible) - Parent contact as Customer => Can only see their product (Expected) - Child contact as Customer => Can only see their product (Wrong) Between 15.0 and saas-17.4, the child contact cannot access its parent's sale order products. This is due to an improvement made in saas-17.4 https://github.com/odoo/enterprise/pull/48624 which lets child contacts use parent SOs in repair/return flows etc... opw-4285382 Forward-Port-Of: odoo/enterprise#73391
This update resolves an issue where selecting a document record in the documents module would lose its selection when column widths were adjusted. The fix prevents the system from removing selections triggered by resizing columns, ensuring users can consistently select and manage documents. This improves the overall usability of the documents module.
Original PR description
Steps to reproduce ================== - Go to documents - Switch to the list view - Select a record - Resize a column => The selection is lost Solution ======== Ignore clicks in the header opw-4203375