Monday, February 23, 2026
4 changes · master
Features or functions removed from Odoo
This change removes an obsolete HR job access field that was already deprecated and no longer needed. It simplifies the HR module internals without changing normal business workflows for users.
Original PR description
Following odoo/odoo@278216a81c84f12010c6050379973953348aeb61, the field `hr.job.allowed_user_ids` has been deprecated. This commits removes the field itself, as it shouldn't be required anymore. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes outdated and unused CSS styles related to displaying 'no content' messages across various Odoo modules. This cleanup improves code organization and reduces potential conflicts, ensuring a cleaner and more efficient user experience. The changes also address a conflict between generic and custom 'no content' classes.
Original PR description
In this PR we remove the overrides which extended `%o-nocontent-empty-document` which has been dropped in the PR of the same name in the community repo. task-5136210 Community PR:
This update removes an unused parameter ('next_groupby') from Odoo's report engines, streamlining the configuration and improving efficiency. The change also eliminates redundant checks within the engines, resulting in a cleaner codebase. This improves maintainability and performance.
Original PR description
We removed count_rows which used the next_groupby by using a custom engine where they specify their next_groupby directly instead. Since next_groupby isn't used anywhere else in the engines, we can remove this parameter (for the engines)! Also removed redondant calls to _check_groupby_fields in custom engines where it would be called by _compute_formula_batch_with_engine_custom before calling the function. task-5145246 Forward-Port-Of: odoo/enterprise#97085
This update simplifies the point-of-sale display by removing the 'With Cart' value. This value was redundant as the current cart amount was already shown on the main product page. This change improves clarity and reduces potential confusion for users.
Original PR description
In this commit: ---------------- - Removed the "With Cart" value as it was not updating when cart items changed. The only difference between "With Cart" and "Total Due" was that it included the current cart amount, which is already clearly visible on the main product page. Therefore, it was considered redundant and has been removed. Task: 5885428