Thursday, October 20, 2022
2 changes · master
Features or functions removed from Odoo
An unused sales order line field has been removed because it was not visible to users and could produce misleading rounded values. This reduces unnecessary data storage and background calculations while lowering the risk of incorrect use in sales-related customizations.
Original PR description
The price_reduce field is not shown to the users, and was not useful for business computations because of its digits specification (losing decimal data when we only want to round the total amounts, not the price before taxes). This commit removes the field to reduce the table size, remove useless computation, avoid misuses of the field and clean code. Task-3018371 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change removes obsolete code from the Sales module that is no longer used. It helps keep the system easier to maintain without changing how users work with sales orders.
Original PR description
method order_lines_layouted() no longer used. Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr