Daily updates from Odoo
Tuesday, June 23, 2026
3 changes · saas-19.2
Enhancements to existing features
This update optimizes the calculation of work order durations, preventing unnecessary recomputations. Previously, creating a work order from the Shop Floor triggered an extra step, slowing down the process. This change ensures the duration is calculated efficiently, improving performance.
Original PR description
When creating a work order from the Shop Floor using the "Add Work Order" option and providing a start date and duration, the `write()` method is called to update the finished date. This triggers a recomputation of the expected duration. Since the expected duration is already correct after the fix introduced in the community module, this additional computation is unnecessary and only adds extra processing. This commit use alredy availble context flag to bypass the redundant recomputation when the expected duration is already known and valid. task-6232842
This update clarifies the process for adding signatures within the HTML editor. The wording has been changed from 'Insert your signature from Sign' to 'Insert your handwritten signature' to better reflect the functionality. This change enhances the user experience and ensures clarity for users adding official signatures to documents.
Original PR description
Purpose of this PR: - Replace 'Insert your signature from Sign' with 'Insert your handwritten signature'. task-6217718 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#267995
This update allows customers using the self-order system to pay at the counter, even if they've already selected a payment method within the self-order process. This provides greater flexibility for customers and streamlines the checkout experience, particularly in scenarios where a customer wants to pay with cash after selecting a payment method digitally.
Original PR description
pos*: point_of_sale, pos_self_order This commit allows the user to allow his customer to pay at the counter even if they already have payment method set in the self order. task-id: 5960666 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#250364