Monday, June 1, 2026
4 changes · saas-18.2
Resolved issues and error corrections
The restaurant point of sale now hides the Split button when bill splitting is turned off. This prevents staff from seeing an option that should not be available, reducing confusion during checkout.
Original PR description
The Split button in the POS control panel was rendered whenever the restaurant module was active, without checking the `iface_splitbill` config flag. opw-6248177 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#266654
This fixes how Italian e-invoicing test attachments are prepared so they work correctly with newer Python versions. The change helps keep automated checks reliable and reduces the risk of false test failures during maintenance.
Original PR description
This commit fixes an error when running the `test_edi_import` test on Python 3.14, which is stricter about base64 validation. Ultimately, the root issue was that raw test content was being passed to the `datas` field of an attachment when a base64 representation was actually expected (which is obviously invalid base64). Passing it via the `raw` field instead correctly handles the raw binary data. runbot-939133 Forward-Port-Of: odoo/odoo#266731
When a new item is added from a delivery linked to a sales order, the sales order now includes the proper product description instead of only the product name. This helps keep customer-facing sales documents accurate and complete without manual correction.
Original PR description
When a line is added to a delivery related to a sale order, the corresponding line created in the sale order uses only the display_name as a description. This commit makes sure that if a previous SO line exists for the product, the new line uses the same description. Otherwise we call `get_product_multiline_description_sale()` Steps to reproduce: - Create a product with a description in the Sales tab - Create a quotation with any product (can be said product) and confirm it - Go to the delivery action, and add a new line with the product in the view, set delivered quantity to 1 - After Validating, you'll notice that the new line in the Quotation doesn't have a description opw-6175891 Forward-Port-Of: odoo/odoo#262276
A minor typo in the name of the Sendcloud website delivery module has been fixed. This ensures consistent and accurate branding within the Odoo Enterprise platform. No other changes were required as all other references used the correct spelling.
Original PR description
The displayed name contained a typo ("Sendcould" instead of "Sendcloud") All other references already use the correct spelling, so no further changes were necessary.
opw-6239003
Forward-Port-Of: odoo/enterprise#118223