Daily updates from Odoo
Saturday, February 14, 2026
2 changes · 18.0
Resolved issues and error corrections
This update fixes an issue where leave refusal tests were unreliable due to relying on weekend dates. The change uses a consistent weekday start date to ensure accurate and predictable leave duration calculations, preventing potential disruptions in the leave management process. This improves the stability and reliability of the HR holiday system.
Original PR description
The access rights test `test_holiday_responsible_refuse_leave` relied on `date.today()`, which may fall on a weekend and lead to inconsistent leave duration/flow depending on the employee calendar. Use a deterministic weekday (`date_utils.start_of(..., 'week')`) as the request start date to prevent weekend-dependent failures in CI. Bug was introduced by https://github.com/odoo/odoo/pull/238205 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update corrects a minor issue where empty 'LineExtensionAmount' values in UBL invoices were being imported into Odoo. These amounts had no business purpose and were causing unnecessary processing. This change ensures that invoices are processed more efficiently and accurately.
Original PR description
Zero LineExtensionAmount have no purpose after import so they can simply be ignored. taks-5881008 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#245862