Daily updates from Odoo
Wednesday, May 20, 2026
6 changes
1 change
Enhancements to existing features
This update ensures the "Save Order" button remains visible in the Point of Sale interface. This allows users to seamlessly continue working on their orders across different devices and within the same session, improving efficiency and reducing frustration.
Original PR description
The "Save Order" button is now always available, allowing users to easily save and resume their orders on different devices within the same session. task-id: 5966678 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#261809 Forward-Port-Of: odoo/odoo#250405
1 change
Enhancements to existing features
This update streamlines the invoicing process by automatically reconciling invoices created from sales orders. Previously, this required manual steps; now, the system directly links invoices to sales orders, improving efficiency and reducing the risk of errors. This enhancement is part of a larger effort to simplify financial workflows within the Odoo Enterprise system.
Original PR description
This commit will allow to automatically reconcile the invoice create from the sale order by passing a context key that will be used in the create_invoices function. task-5502964 Forward-Port-Of: odoo/enterprise#108546
1 change
Enhancements to existing features
This update streamlines the invoicing process by automatically reconciling invoices created from sales orders. Previously, this required manual steps; now, the system directly links invoices to sales orders, improving efficiency and reducing potential errors. This change enhances the accuracy of financial reporting and simplifies reconciliation workflows.
Original PR description
This commit will allow to automatically reconcile the invoice create from the sale order by passing a context key that will be used in the create_invoices function. task-5502964 Forward-Port-Of: odoo/enterprise#108546
3 changes
Enhancements to existing features
This update modernizes the web studio report editor's user interface, aligning it more closely with the company's website design. The changes include a reorganized layout with separate tabs for content editing, improved navigation, and a simplified sidebar for options and resources, enhancing the report creation experience.
Original PR description
This commit reworks the web_studio report editor UI layout and style to be more inline with the website editor. - Wysiwyg/Xml/Preview are now separate tabs - Save/Discard and Undo/Redo are in the sidebar - Options are now in groups in the sidebar - Resources are now in the sidebar as well instead of the hierarchical select Community: https://github.com/odoo/odoo/pull/242868 Task: [5150355](https://www.odoo.com/odoo/project/133/tasks/5150355)
This update introduces dashboard warnings related to payroll, mirroring the existing alerts for employee and payslip issues. This enhancement ensures users receive timely notifications about potential discrepancies or errors within the payroll system, improving accuracy and compliance.
Original PR description
In this commit, we created dashboard warnings based on existing employee + payslip's issues. task-5387328
This update enhances the AI agent's ability to utilize a wider range of content snippets, including video and alert blocks. The change avoids iframe creation for video snippets, improving the AI's content generation process and flexibility.
Original PR description
Before this commit, ai agent could read only normal snippets, now we enable inner snippets as well, so it can choose from those blocks too, e.g. video, or alert. For the video snippet, though, if there's no source link, AI will try to insert an iframe, which will be removed by sanitization, so we update the prompt to have it avoid adding iframes, but instead add an embedded url to data-oe-expression, so the iframe can be generated by an interaction. task-6150746