Daily updates from Odoo
Wednesday, May 20, 2026
3 changes · master
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