Wednesday, September 24, 2025
6 changes
2 changes
Enhancements to existing features
The model selector can now be configured to show more items at once. This lets Documents display its full list of available models without changing behavior in other areas.
Original PR description
In Documents, we have a static list of 9 items to show with this widget. As there is no "Search more" available, and we're in stable, this is the minimal change to not change behavior. Task-5075200 See related ENT PR (includes an integration test). Forward-Port-Of: odoo/odoo#226608
The Documents details panel now displays the full static list of available model labels instead of leaving users to infer hidden options. This makes selection clearer and reduces confusion because search is not available for this list.
Original PR description
As the list is static and there are only a few and searching for more is not supported, this enables to show all labels so that users don't have to guess what is available or not. Task-5075200 Forward-Port-Of: odoo/enterprise#94180
2 changes
Enhancements to existing features
The payroll pay run employee list is clearer and easier to use. Employees are now sorted by name, the list has a more descriptive label, and pay schedule information is shown to help payroll teams choose the right employees faster.
Original PR description
Changed name of the list, sorted it by employee name, and added pay schedule field. task-5067639
1 change
Enhancements to existing features
Automatic reconciliation models now use the account’s display name directly, without adding extra numbers to make each name unique. This keeps rule names clearer for users now that duplicate names are allowed.
Original PR description
In this commit: https://github.com/odoo/enterprise/commit/9cdc519a7aa7e40cad31d2eb6dcc8858df831e9b we change the way the reco model name were made by going back to just the display name of the account. For prior version 19.0, a unique constraint on the name was there so we added a number after the name of the account to avoid duplicate. The constraint has been removed and so this code is no longer needed. no task id
1 change
Enhancements to existing features
This change makes the automatic wave creation rules in stock picking batches easier for developers to customize. Businesses can adapt warehouse wave planning conditions to their specific operations without changing the core process.
Original PR description
This improvement just adds some hook methods that allow to decapsulate the logic of auto waves so its doable to extend the conditions for auto-waving. cc @moduon fyi @Shide TODO: for the sake of clarity I just inserted the hook method logic but a cleaner approach would be to extract the whole logic of each hook into their own separate method --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Automatic reconciliation model names now use the account's display name directly, without adding extra numbers. This keeps generated names clearer for accounting users now that duplicate names are allowed.
Original PR description
In this commit: https://github.com/odoo/enterprise/commit/9cdc519a7aa7e40cad31d2eb6dcc8858df831e9b we change the way the reco model name were made by going back to just the display name of the account. For prior version 19.0, a unique constraint on the name was there so we added a number after the name of the account to avoid duplicate. The constraint has been removed and so this code is no longer needed. no task id Forward-Port-Of: odoo/enterprise#95130