Friday, October 4, 2024
4 changes
1 change
Miscellaneous changes
In case an extra dependency is added to the api.depends decorator of account.move._compute_journal_id, account.payment.partner_bank_id is going to be recomputed, potentially overwriting existing value. Steps to reproduce: 1. Install a module adding a dependency to account.move._compute_journal_id 2. Create a vendor bill with a partner having more than one bank account 3. Register payment using another bank account than the first one The created payment would then have its bank account r
Original PR description
In case an extra dependency is added to the api.depends decorator of account.move._compute_journal_id, account.payment.partner_bank_id is going to be recomputed, potentially overwriting existing value. Steps to reproduce: 1. Install a module adding a dependency to account.move._compute_journal_id 2. Create a vendor bill with a partner having more than one bank account 3. Register payment using another bank account than the first one The created payment would then have its bank account recomputed. By testing for an existing value in the compute function before assigning the first bank account of the partner, we ensure any manually defined value will not be overwritten through unwanted recomputation. For context: https://github.com/OCA/sale-workflow/pull/3321 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#181278
1 change
Miscellaneous changes
Before this commit, the div was addded for additional condition for button visibility which causing button asymtry and cropping button. after this commit, moved visibility condition in invisible attribute of button. Forward-Port-Of: odoo/enterprise#70551
Original PR description
Before this commit, the div was addded for additional condition for button visibility which causing button asymtry and cropping button. after this commit, moved visibility condition in invisible attribute of button. Forward-Port-Of: odoo/enterprise#70551
2 changes
Enhancements to existing features
The GitHub issue template was updated to align bug reports with the Odoo 18 release. This helps contributors provide clearer, release-appropriate information, making issue triage more efficient.
Miscellaneous changes
## Before this commit The Reseller field was visible on the sales order but not the invoice. Although the field existed on the invoice, it wasn't displayed. It needed to be made visible. ## After this commit The Reseller field is now visible on the invoice as well. > Task-4216234 Forward-Port-Of: odoo/odoo#182044
Original PR description
## Before this commit The Reseller field was visible on the sales order but not the invoice. Although the field existed on the invoice, it wasn't displayed. It needed to be made visible. ## After this commit The Reseller field is now visible on the invoice as well. > Task-4216234 Forward-Port-Of: odoo/odoo#182044