Daily updates from Odoo
Monday, May 18, 2026
8 changes
1 change
Enhancements to existing features
This update removes a restriction on the fiduciary VAT field within the connection wizard. This change provides more flexibility for users managing fiduciary accounts, allowing for adjustments as needed. The change is intended to improve the user experience and streamline processes related to VAT configuration.
Original PR description
This commit will remove the readonly on the fiduciary_vat in the connection wizard. It will give more flexibility for fiduciary. task-6148930 Forward-Port-Of: odoo/enterprise#115752
2 changes
Enhancements to existing features
This update removes a restriction on the fiduciary VAT field in the connection wizard. This change provides greater flexibility for users configuring VAT settings related to Codabox, streamlining the process and improving usability. It allows for more adaptable configurations within the Odoo Enterprise system.
Original PR description
This commit will remove the readonly on the fiduciary_vat in the connection wizard. It will give more flexibility for fiduciary. task-6148930 Forward-Port-Of: odoo/enterprise#115752
This update aligns the subheaders and numerical data within Odoo's financial reports, ensuring a more professional and consistent visual appearance. Previously, the formatting was uneven, and this change corrects that to improve readability and user experience. This is a minor improvement to the reporting system.
Original PR description
Before this commit, subheaders of numeric columns were centered, while the figures in the columns were aligned to the end. This commit ensures that both the subheader and the figures are aligned the same way (center or end). task-6197223 Forward-Port-Of: odoo/enterprise#116578
3 changes
Enhancements to existing features
This update simplifies how businesses can customize the website event registration process. By separating the registration logic, developers can now easily inherit and modify the setup, making it simpler to tailor events to specific needs. This change enhances flexibility and reduces complexity for custom development.
Original PR description
Since this controller returns raw markup, it is impossible to inherit. By splitting the controller `registration_new`, allows to manage custom developments with the inheritance of the prepare method instead. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#264242 Forward-Port-Of: odoo/odoo#244156
This update removes a restriction on the fiduciary VAT field within the connection wizard for the l10n_be_codabox module. This change provides greater flexibility for users managing fiduciary VAT settings, streamlining the configuration process. It's a minor improvement intended to enhance usability.
Original PR description
This commit will remove the readonly on the fiduciary_vat in the connection wizard. It will give more flexibility for fiduciary. task-6148930 Forward-Port-Of: odoo/enterprise#115752
This update enhances the Windows IoT version tracking by automatically recording the build date in a VERSION file, mirroring the format used for Raspberry Pi IoT images. Additionally, the Windows version is now logged upon startup, providing clearer identification of the installed version. This ensures consistent versioning across IoT deployments.
Original PR description
Before this commit, the Windows IoT version was hardcoded to '23.11'. After this commit, the installer now writes a VERSION file to the IoT install directory (which will remain between git checkouts). This file contains the build date in `YYYY.MM.DD` format, the same as the current Raspberry Pi IoT images. In addition, the Windows version is now logged on startup. task-6196801 **Image version:** <img width="306" height="39" alt="image" src="https://github.com/user-attachments/assets/f0252d44-4b5c-4bb5-aac8-4b8f56dc6ee2" /> **Windows version:** > INFO ? odoo.addons.iot_drivers.main: Windows version: Windows-11-10.0.26100-SP0 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#263089
1 change
Enhancements to existing features
This update adds a test to ensure the payment data sent to Odoofin remains consistent. This safeguards against unexpected changes that could disrupt payment processing and highlights the need for corresponding updates on the Odoofin side. It’s a preventative measure to maintain reliable payment functionality.
Original PR description
Add a test asserting the payment payload structure sent to Odoofin. The goal is to safeguard against unintended payload changes that are not handled on Odoofin's side by making such changes explicit during testing, and reminding developers that corresponding updates may also be required there. No task ID Forward-Port-Of: odoo/enterprise#117260
1 change
Enhancements to existing features
This update standardizes the handling of employee legal names (first and last) across all Odoo localization modules. Previously, each localization had unique logic for these names, leading to inconsistencies. This change aligns with a new, unified approach, ensuring accurate and consistent name formatting in payroll reports and documents for all supported countries.
Original PR description
Replace l10ns specific logic for legal first name and legal last name with the generic one introduced in https://github.com/odoo/odoo/pull/262180