Monday, September 15, 2025
6 changes · 19.0
Enhancements to existing features
A confusing help message related to multi-actions has been removed from the Base module. This reduces user confusion by avoiding guidance that was not useful or clear.
Original PR description
This help message was not really helpful, and was actually confusing for users. Task: task-5085285
The work entries Gantt view now avoids loading favorite work entry data unless users are in the mode that needs it. This reduces unnecessary data fetching and can make the view feel more responsive in regular use.
Original PR description
If the gantt view is not in multi create mode, it is not necessary to fetch userFavoritesWorkEntries.
The Argentina electronic invoicing module now includes refreshed demo and testing certificates needed to connect to ARCA's test services. This prevents test failures caused by expired certificates and keeps the electronic invoicing testing environment usable.
Original PR description
Homologation certificates are required to connect Odoo with ARCA's test web services. When they expire, electronic invoicing tests fail, displaying a “Digital certificate expired” warning. In this PR, I'm updating the certificates so we can continue using the testing environment for our tests. Odoo Task 1359 Adhoc Task 57144 Forward-Port-Of: odoo/enterprise#94128
The product quantity button now shows both “On Hand” and “Forecasted” labels when units of measure are disabled. This makes stock information easier to understand and avoids confusion from an unlabeled quantity value.
Original PR description
Backport of #226418, as the target should have been `19.0` in the first place :man_facepalming: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change improves internal testing for the HTML editor by allowing tests to compare content in a more consistent way. It helps reduce unnecessary test differences and supports more reliable validation without changing user-facing behavior.
Original PR description
The `getContent` test util has an `options` parameter with a useful `sortAttr` property. This adapts `testEditor` so it can pass that parameter from its `config` to `getContent`. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
When a product category is duplicated, the new category name now automatically includes “(copy)”. This makes copied categories easier to identify and helps reduce mistakes when managing product categorization.
Original PR description
Purpose: ================ -Currently, duplicating a `product category` record creates a new record with the same name as the original. -This makes it difficult to distinguish duplicates from the original, leading to potential confusion when managing categories. With this commit: ================ -Duplicating a `product category` record now appends `(copy)` to the name of the new product category record. -This change makes duplicates clearly identifiable and reduces ambiguity in category management. Prevents mistakes in product categorization. Task-5076170