Daily updates from Odoo
Wednesday, June 17, 2026
7 changes · master
Enhancements to existing features
This update brings the Owl library used in several Odoo modules up to the latest version. The change involves adapting the codebase to align with the new prop syntax introduced in the updated Owl library, ensuring continued functionality and compatibility.
This update enhances the user experience by automatically displaying a paperclip icon on statement lines when supporting documents are attached. Additionally, the system now refreshes statement lines after document uploads, eliminating the need for manual page refreshes to view attachments. This streamlines the process of managing and accessing supporting documentation for financial statements.
Original PR description
Users can add supporting documents directly on a statement line. Make the statement line show a paperclip in this case. Also refresh the statement line after posting a log note because without that the attachments uploaded through a log note would require the user to refresh the page to show the paperclip. --------------------------------------------------------------------------------------------------------------------- Use the statement line attachment field when downloading attachments instead of searching the same attachments separately. task-6237923
This update simplifies the HR payroll configuration menu by renaming the 'Work Entries' section to 'Time Management'. This change enhances user experience and aligns with updated terminology within the Odoo Enterprise system. It follows up on a previous task to streamline the setup process.
Original PR description
This PR expected to rename 'Work Entries' in configuration menu to 'Time Management'. follow up from from previous task: 5976238. task: 6290162
Resolved issues and error corrections
This update resolves a technical issue impacting the accuracy of tests across several Odoo modules. The team removed a fallback mechanism that was causing inconsistencies in test results. This ensures more reliable testing and ultimately contributes to a more stable and dependable Odoo Enterprise platform.
Original PR description
Removed fallback. https://github.com/odoo/odoo/pull/270190
A recent issue preventing the successful installation of demo data for the pos_restaurant_appointment module has been resolved. The fix corrects a coding error that was preventing the correct data loading process, ensuring demo data can now be properly installed.
Original PR description
Demo data installation failed because `_load_pos_self_data_read` was used instead of `_load_pos_data_read`. Use the correct loader to allow successful module installation. Runbot Error-940277
This update removes a misleading warning related to R&D time reporting, streamlining the payroll process for users in Belgium. Additionally, an unused field related to contract withholding taxes exemptions has been removed, simplifying data management. This change improves the accuracy of payroll reports and reduces potential confusion.
Original PR description
. Remove not needed Missing R&D Time Rate warning . Remove l10n_be_contract_withholding_taxes_exemption field task-6296840
This update corrects a duplication of the 'abstract field' feature that was previously introduced in the base Odoo module. The change removes an unnecessary override in the web_studio module, ensuring consistency across the Odoo platform. This streamlines development and avoids potential conflicts.
Original PR description
The abstract field was added in odoo/odoo#186121 in the base module. Removing the overwrite here.