Daily updates from Odoo
Wednesday, March 11, 2026
6 changes
1 change
Enhancements to existing features
This update optimizes the way tests are run for the stock barcode module, speeding up test execution times. By moving test setup to a single class, the process is streamlined, reducing redundant operations. This results in a minor performance improvement for our testing procedures.
Original PR description
This commit moves the records' creation and the configuration of the `stock_barcode` tests from the `setUp` to the `setUpClass` method, so those are done only once and not at the beginning of every test. The purpose of this change is to slightly speed up the run of tests. Forward-Port-Of: odoo/enterprise#109827 Forward-Port-Of: odoo/enterprise#109624
1 change
Enhancements to existing features
This update adjusts the trial balance reports for Mexican accounting (MX) to align with the latest accounting standards (CoA). This ensures accurate reporting and compliance for businesses operating in Mexico within the Odoo Enterprise system.
Original PR description
Adapted trial balance tests to consider update on MX CoA task-4920083 target: 19.0 -> master Forward-Port-Of: odoo/enterprise#108200
4 changes
Enhancements to existing features
This update enhances the planning module's user interface by repositioning buttons next to input fields for a cleaner look. Additionally, redundant icons within the kanban card have been removed to streamline the user experience. This change focuses on visual consistency and usability.
Original PR description
This commit improves the UI in planning, by using the o_input_box class around two fields. Instead of having a button right next to the input, the button now floats as a suffix at the right side of the input. Also, two icons were present in the kanban card, since the daterange field already contains an icon in readonly touch mode.
This update reduces the number of template options displayed in the planning view, improving the user interface's clarity and preventing visual clutter. The change limits the badges available to 8, addressing an issue where excessive template choices could overwhelm users. This enhancement focuses on a better user experience.
Original PR description
Add `badge_limit: 8` to the planning template autocomplete widget. **Task~5270283** **Related Community PR: odoo/odoo#252483**
This update enhances the visual appearance of consent emails sent to users when they sign up for Odoo Enterprise. The changes align the email layout with the latest Odoo Finance design standards, creating a more professional and consistent user experience. This improves brand perception and user satisfaction.
Original PR description
- updated consent email template layout as per current odoofin design task-5107776
This update streamlines the process for depositing money at the point of sale. It now automatically selects the first available payment method, eliminating the need for users to manually choose one via a popup. This improves the user experience and speeds up the deposit flow.
Original PR description
### Before this commit: - Depositing money in POS always required selecting a payment method via a popup. - This added an unnecessary step to the deposit flow. ### After this commit: - Automatically select the first available payment method (excluding pay later), ordered by sequence. - Remove the payment method selection popup for deposits. Task:5927077 Related PR: - Community: https://github.com/odoo/odoo/pull/248565