Friday, November 28, 2025
2 changes · saas-18.4
Enhancements to existing features
This update enhances how sales information is displayed on customer-facing pages within Odoo. Specifically, the system now supports passing additional data (kwargs) to the page view value generation process in key modules like Sales, Accounting, Project, and Purchase. This allows for more flexible and customized sales page content.
Original PR description
kwargs is added to the `_get_page_view_values()` method in other modules: `account` (https://github.com/odoo/odoo/blob/fdfa573fef5de83a77310e650dd950bddd7b0554/addons/account/controllers/portal.py#L47), `project` (https://github.com/odoo/odoo/blob/fdfa573fef5de83a77310e650dd950bddd7b0554/addons/project/controllers/portal.py#L58), or `purchase` (https://github.com/odoo/odoo/blob/fdfa573fef5de83a77310e650dd950bddd7b0554/addons/purchase/controllers/portal.py#L110). @Tecnativa TT57124 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#237270
This update simplifies the process of retrieving matched debit and credit entries associated with an account move line. Previously, this was a complex process, and this change provides a new helper function to streamline data access. This enhancement improves the efficiency of account reconciliation workflows.
Original PR description
This commit add a new helper to easily get matched_debit_ids and matched_credit_ids from an account.move.line. Linked:https://github.com/odoo/enterprise/pull/100493 opw-5184679 Forward-Port-Of: odoo/odoo#237367