Wednesday, June 17, 2026
4 changes · master
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.