Daily updates from Odoo
Monday, July 13, 2026
3 changes · saas-18.3
Enhancements to existing features
This update ensures that when expenses are marked as duplicates, their associated bills are automatically recognized as duplicates as well. Previously, bill duplication was handled separately, leading to potential inconsistencies. This change streamlines expense management and improves data accuracy.
Original PR description
Bills linked to expenses now rely on the expense duplication logic instead of the standard bill duplication. This ensures that when two expenses are marked as duplicates, their corresponding bills are also recognized as duplicates. task-5262550
This update brings the Owl library, a key component of our website's image carousel functionality, to version 2.8.4. This includes a fix to prevent lost renders and enables compatibility with Node.js, improving the overall performance and stability of our website. These changes enhance the user experience and ensure consistent image display.
Original PR description
- [FIX] runtime: don't lose coalesced renders - [IMP] loadable with nodejs See https://github.com/odoo/owl/commits/owl-2.x/ for more details Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#275568
This update ensures that product prediction based on name works consistently for all users. Previously, the feature was running regardless of whether users had disabled it in their settings, which could lead to confusion. Now, product prediction will automatically run for community users and will respect the user's preference as defined by the 'predict_bill_product' setting.
Original PR description
Context: There was an enterprise field `predict_bill_product` allowing users to toggle product prediction based on line label. Before this commit, product prediction by name was running without taking into account the value of this field, which could confuse users who had disabled the feature in settings. This commit makes product prediction by name depend on this field. For community users, the prediction will run by default. no-task --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#267138