Daily updates from Odoo
Tuesday, June 16, 2026
7 changes
2 changes
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
This update adds support for the Hacienda Foral de Navarra tax agency within Odoo's SII invoicing system. It includes necessary configuration changes to handle the agency's specific XML format and endpoint requirements, ensuring accurate invoice submissions to the Navarra tax authorities.
Original PR description
The Hacienda Foral de Navarra uses the same SII XML format as AEAT but sends invoices to a different endpoint. Additionally, Navarra requires explicit XML namespace declarations in the SOAP envelope header, which the standard zeep serializer does not include by default. This adds the Navarra tax agency as a new option in the company SII configuration, defines its production and test endpoints, and injects the required namespaces in the request header when the Navarra agency is selected. task-5946583 I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#268928 Forward-Port-Of: odoo/odoo#263048
5 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 adds sample data and an interactive onboarding tour specifically for appointment types like account payments, HR recruitment, and restaurant bookings. This allows new users to quickly understand and experience the appointment functionality within Odoo Enterprise, improving the initial user experience.
Original PR description
*=appointment_account_payment,appointment_hr_recruitment,pos_restaurant_appointment This PR adds demo events for selected appointment types and introduces an onboarding tour. Task-6233604
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
This update enhances the company's payroll reporting for employees using eco-friendly company vehicles. It adds a new salary rule and reports contributions to the DMFA (under code 868), accurately reflecting the tax benefits associated with these vehicles. This ensures compliance and provides employees with correct financial reporting.
Original PR description
For employees benefiting from a mobility budget and using an eco-friendly company vehicle: - add a dedicated salary rule; - report the contribution amount in the DMFA under code 868; - add code 1 for eco-friendly vehicles in the list of the company cars. task-259958
This update expands the Odoo mail API to include support for 'Cc' (carbon copy) recipients. Previously, the API only supported 'To' recipients. This enhancement allows users to send emails with multiple recipients, improving email communication flexibility within Odoo.
Original PR description
We adapt the code to support "Cc" recipient in the mail API (odoo/odoo#256333). various: account_followup, ai, helpdesk, hr_contract_salary, web_studio Task-5910857