Daily updates from Odoo
Tuesday, June 16, 2026
3 changes
1 change
New functionality added to Odoo
This update expands the information sent to Pricer, including price before taxes, tax details, supplier product codes, and units of measure. This addition addresses critical use cases and ensures accurate pricing data is provided to Pricer, improving integration and functionality. The update also includes minor code cleanup and automated updates to pricer tags based on related model changes.
Original PR description
We are currently missing some fields which must be sent to Pricer for some basic use-case scenarios This PR adds - Price before taxes - Taxes name (ex: 21%) - Supplier product code - Supplier reference - Units of measure of the product The PR also triggers the update of the pricer tags when the models indirectly related to Pricer are modified (taxes name / supplier reference / supplier product code) + cleans up the code a bit task-4506260 Forward-Port-Of: odoo/enterprise#118814 Forward-Port-Of: odoo/enterprise#78009
2 changes
New functionality added to Odoo
This update incorporates a new rule to comply with Belgian tax regulations regarding employee omission (ONSS 863). The change utilizes updated contribution rates from a recent XML file and integrates this rule into the company's payroll management system. This ensures accurate tax calculations and reporting for employees in Belgium.
Original PR description
add ONSS OMISSION (input rule) and using Rates defined in "NOSSContributionRate_2026_1.xml" and add it to dmfa Task Id: 6259645
This update allows users with appropriate permissions to easily create reusable quotation templates directly from existing sales orders or quotations. This streamlines the process, reducing the number of steps and improving efficiency for creating and reusing templates. Related changes also align with a recent update to the Community version of Odoo.
Original PR description
Currently, there is no option to convert a quotation or sales order into a reusable template. In https://github.com/odoo/odoo/pull/252541, we introduce this option for users with rights to create a quotation template. This enhancement reduces extra clicks and navigation, making it easier and faster for users to create and reuse quotation templates directly from the quotation. In this commit, we add the extra fields added to quotation templates by enterprise modules. Additionally, following the removal of the `sales_management.group_sale_order_template` group in Community, we have updated the relevant Enterprise views and tests to align with this change. - Community: https://github.com/odoo/odoo/pull/252541 - Upgrade: https://github.com/odoo/upgrade/pull/10415 --- task-5260606