Monday, November 27, 2023
3 changes
1 change
Enhancements to existing features
The bank reconciliation screens have been visually refreshed as part of the broader Odoo 16 style update. This reduces unnecessary styling code and should make the accounting workflow feel cleaner and more consistent for users.
Original PR description
Requires: - https://github.com/odoo/odoo/pull/94397 Required by: - https://github.com/odoo/enterprise/pull/28792 This commit improves the design and removes unnecessary SCSS. Part of the overall v16 SCSS optimization/restyle, task-2704984. task-2879908
2 changes
Enhancements to existing features
The quotation template form view has been enhanced to improve the user experience when entering prepayment amounts. This update makes it easier for sales teams to input and review prepayment information, streamlining the quotation process and reducing potential data entry errors.
Original PR description
**Version:** - master **Improvement:** With this PR, we have improved the UI for the Prepayment amount field in both the quotation template form view The changes have made it easier for users to input and review information. task-3546106
This update prevents subscription invoice processing from running when deferred revenue settings are not properly configured. Previously, invoices could be created but fail to post, causing system rollbacks and unclear error messages. The improvement includes better error notifications and upfront validation to avoid failed transactions.
Original PR description
…ng invcron Before this commit, it was possible to launch the subscription invoice cron when the deferred journal or account was not properly set in the settings. As a result, the invoice was created in draft, the payment request was performed but the invoice was not posted. Then the system was rollback. An email indicating the issue was sent but it was not clear enough. This commit improve the email content and prevent to launch the cron if the deferred revenues are not properly configured. opw-ticket: 3565556 Forward-Port-Of: odoo/enterprise#51478 Forward-Port-Of: odoo/enterprise#50897