Wednesday, December 31, 2025
9 changes · saas-19.1
New functionality added to Odoo
This update incorporates new master data required to comply with recent changes to Brazilian tax regulations. The update ensures Odoo accurately reflects and reports on Brazilian fiscal requirements, improving financial reporting and compliance. This change impacts the accounting and tax modules within the Odoo system.
Original PR description
task-4939796 Forward-Port-Of: odoo/odoo#240988
Enhancements to existing features
This update adjusts payroll rule parameters to reflect changes in US tax regulations for the 2026 tax year. Ensuring these parameters are current is crucial for accurate salary calculations and maintaining compliance with US payroll laws. This change supports ongoing operational accuracy.
Original PR description
Purpose: Certain US Payroll values changes yearly. The payroll rule parameters must be updated for accurate salary calculation for 2026 for compliance. task-5409739 Forward-Port-Of: odoo/enterprise#102759 Forward-Port-Of: odoo/enterprise#102711
Resolved issues and error corrections
This update fixes an issue where multiple order lines were incorrectly refunded when a user initiated a refund. Now, only the selected line is refunded, and deleting a refund order correctly restores the ticket screen. This ensures accurate and reliable refund processing for our POS users.
Original PR description
Steps to reproduce: - In POS, select a paid order in the ticket screen with multiple lines. - Select the first line, choose a quantity to refund, and click Refund. - Return to the ticket screen, select the same paid order again. - Select another line and quantity, and click Refund. Issue: - In the second refund, all order lines were being refunded, even though only one line was selected. - After deleting a refund order, the ticket screen still showed messages like "Refunding x quantities in xyz order." Fix: - Only the selected lines are refunded. - Deleting a refund order restores the state of the linked order correctly. Task-5095578 Forward-Port-Of: odoo/odoo#241600 Forward-Port-Of: odoo/odoo#227937
This update reflects changes to Mexican withholding tax rates (ISR) mandated by the latest tax resolution. The update adjusts the ‘Mexico: ISR Table’ parameter in the Odoo system to align with the new tax tables effective January 1, 2026. This ensures accurate tax calculations for Mexican businesses using Odoo Enterprise.
Original PR description
According to the Mexican Tax Resolution (Resolución Miscelánea Fiscal 2026: https://dof.gob.mx/2025/SHCP/SHCP_281225_01.pdf), the ISR withholding tax tables applicable for the fiscal year have changed, effective January 1, 2026. It is necessary to add a new parameter value for “Mexico: ISR Table” to reflect the new values. target: 19.0 task: 5448019 Forward-Port-Of: odoo/enterprise#103009
This update prepares Odoo for Brazil's upcoming shift to a new consumption tax system starting in 2026. Users can enable this new system based on their business location and transaction types. The changes adapt existing tax calculation modules to comply with the new requirements, utilizing Avalara for tax processing.
Original PR description
2026 marks the start of Brazil's 8-year plan to migrate to a completely new consumption tax system [1]. The new system is meant to be simpler than the old one, but we defer to Avalara for tax…
2026 marks the start of Brazil's 8-year plan to migrate to a completely new consumption tax system [1]. The new system is meant to be simpler than the old one, but we defer to Avalara for tax calculation so we don't really notice it technically. The old and new system have to coexist for the foreseeable future because the rollout happens gradually over many years. Whether the new system has to be enabled depends on the federal state the business is in, the type of transactions they do, and other factors. The user has the option to enable it through the l10n_br_is_icbs Boolean flag on the company, which gates all the new functionality. These changes impact both tax calculation and EDI. This set of modules adapts our existing l10n_br* modules to the new requirements set out by Avalara. We are required to send extra values to their API, and in some cases adapt existing ones. task-4939796 [1] https://www.planalto.gov.br/ccivil_03/leis/lcp/lcp214.htm Forward-Port-Of: odoo/enterprise#102706
This update resolves an issue where adding lot-tracked products to Point of Sale orders would sometimes trigger an error if the picking type wasn't correctly configured. This fix ensures a smoother ordering process for products tracked by lot, improving reliability and preventing order disruptions. It addresses a technical bug related to inventory management.
Original PR description
When adding a lot-tracked product to an orderline, if the picking type does not set to create lots or use existing ones, an error was raised when adding the lot-tracked product twice. opw-5385476 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#240548
This update streamlines how product images are loaded within the Point of Sale (POS) system. Previously, images were unnecessarily loaded and then converted to booleans, slowing down performance. Now, images are only loaded when needed, resulting in faster loading times and a smoother user experience.
Original PR description
Before this commit, when loading products in POS, images were loaded and then changed to boolean values. This was causing unnecessary data to be loaded from the database, impacting performance. This commit modifies the product loading methods to avoid loading images initially. Instead, by setting the 'bin_size' context key to True when loading products, images are not fetched from the database, and the size of binary fields is returned instead. opw-5392423 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#241239 Forward-Port-Of: odoo/odoo#240420
This update reverses a recent change that restricted access to cash in/out functionality within Point of Sale. Previously, users needing to manage cash transactions required invoicing permissions. This reversion ensures that users with invoicing rights can also handle cash in/out operations, aligning with standard business processes.
Original PR description
This commit reverts the changes made in https://github.com/odoo/odoo/pull/190342/commits/d47b256a10713618a853d9eeacb2c1665330ed4f as they are not wanted. The user that wants to have access to cash in/out should have the invoicing rights at least. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#228595 Forward-Port-Of: odoo/odoo#212994
This update corrects a restriction imposed by Mexican tax authorities (SAT) on the format of the CuentaPredial field in our Odoo Enterprise software. The change ensures compliance with the latest SAT regulations, preventing potential errors and ensuring accurate tax reporting for Mexican businesses using this module. This fix maintains the integrity of financial data and avoids potential penalties.
Original PR description
SAT has declared the restriction [0-9a-zA-Z]{1,150} for CuentaPredial node
Specification: https://www.sat.gob.mx/sitio_internet/cfd/4/cfdv40.xsd
Forward-Port-Of: odoo/enterprise#102981