Friday, June 19, 2026
5 changes · 19.0
Resolved issues and error corrections
This update resolves an issue preventing users with Sales access from inserting data into Quotation templates through the spreadsheet management feature. The change adds a setting to ensure the necessary flag is enabled when the module is installed and the user has the correct permissions, improving usability.
Original PR description
Current behavior before PR: - The `can_insert_in_spreadsheet` session flag was not set by the spreadsheet_sale_management module. - Users with proper Sale access rights still could not insert into Quotation templates. Desired behavior after PR is merged: - Added logic to set `can_insert_in_spreadsheet` when the module is installed and the user has the required access rights. Task: [5960761](https://www.odoo.com/odoo/project/2328/tasks/5960761) Forward-Port-Of: odoo/enterprise#120903 Forward-Port-Of: odoo/enterprise#108674
This update resolves an issue where the system incorrectly rejected zero measurements received from caliper devices via IoT. The fix allows for valid zero readings, ensuring accurate data capture for quality checks. It also includes a minor typo correction.
Original PR description
Fix a check on the IoT response that incorrectly rejected valid measurements of 0 from caliper devices Also fix a typo opw-6184669
This update fixes a technical detail in the Odoo Enterprise system related to the DiDi Food delivery provider. The provider's technical name has been corrected from 'didifood' to 'didi' to align with recent updates from UrbanPiper. This ensures accurate identification and integration of the DiDi Food delivery service.
Original PR description
In this commit: - Following up on this commit https://github.com/odoo/enterprise/commit/6d44f403e3fc8f47e899b9ac6fc63b8a3f66861d, UrbanPiper updated `DiDi Food` technical name to `didi`. So, we are updating the `DiDi Food` provider technical name from `didifood` to `didi`. Task-6310690
This update eliminates a frequent warning message that appeared when automatic OCR was disabled for invoices. This message was not helpful to users and has now been removed, streamlining the invoice processing experience. It improves the user experience by reducing unnecessary notifications.
Original PR description
The warning "Automatic OCR does not apply to this document" was logged for every upload when automatic OCR isn't enabled, it isn't very useful. opw-[6232122](https://www.odoo.com/odoo/unassigned-tasks/6232122)
This update fixes a display issue where rental prices weren't correctly formatted on the website. The fix adds a necessary separator (/) to ensure rental prices and durations are shown clearly, improving the user experience for rental product configuration and ordering. This ensures accurate pricing information is presented to customers.
Original PR description
Steps to produce: --- - Install the `Rental and eCommerce `modules. - Create a rental product and configure a rental price for it. - Add an optional product from the Sales tab. - Publish the product on the website. - Open the product page on the website and click` Add to Cart`. Issue: --- - In the product configurator, the rental price is displayed without the `/` separator between the price and the rental duration period. Cause: --- - The string used to generate the rental duration label does not include the `/` separator. Fix: --- - Add the missing `/` separator to the rental duration label so that rental prices are displayed correctly. Before: --- <img width="974" height="185" alt="image" src="https://github.com/user-attachments/assets/64a88a60-bcc0-4657-97fd-584da57d0aff" /> After: --- <img width="967" height="188" alt="image" src="https://github.com/user-attachments/assets/b4d50019-1db4-4817-a8ce-446cc3c55df4" /> opw-6293015