Thursday, December 29, 2022
3 changes · master
Enhancements to existing features
Shipping method settings are simplified by hiding margin fields that do not apply to fixed-price or rules-based carriers. Other carrier types gain a fixed margin option, making shipping pricing easier to configure consistently.
Original PR description
Description of the issue/feature this PR addresses: Multiple fields were unused / redundant in the shipping methods : "Margin on rate" with provider "Fixed Price" "Margin on rate", "Free if order amount is above" and "Amount" with provider "Based on Rules" as we can put them in the rules Add the field fixed margin for the other providers Current behavior before PR: removed "Margin on rate" for "Fixed Price" and "Based on Rules" added "Fixed Margin" for all the other providers Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Bank reconciliation now prioritizes journal items whose remaining amount matches the bank statement transaction. This helps users find the right accounting entries faster while avoiding duplicate results in the list.
Original PR description
The bank recon widget needs to display move lines that match the bank statement transaction value first. The ORM does not allow a complicated order by clause, and if it did, it would have a significant performance impact. Modify the search_read method to find matching records, then concatenate with the default search result. To avoid duplicates, the domain and limits are modified Task-3042547 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The bank reconciliation widget now prioritizes move lines that match the bank transaction amount, making likely matches easier to find. This helps accounting users reconcile transactions faster and with less manual searching.
Original PR description
The bank recon widget needs to display move lines that match the bank transaction value first. This is done in the corresponding odoo community commit. Here we set a context key to modify the search_read behaviour Task-3042547