Friday, October 7, 2022
3 changes · master
Enhancements to existing features
Users can now open a project's tasks directly from the project list using a new button. This saves time by avoiding the extra step of opening the project details page first.
Original PR description
In this commit we introduce a button in the project list view which, if clicked, redirects the user to the project task kanban, where they can see the project's tasks. This change gives the user the posibility of directly viewing a project's tasks from the project list view without needing to go through the form view, thus increasing efficiency. Task-2969697 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Emoji data in the Mail app is now loaded only when needed instead of during the initial page load. This reduces unnecessary upfront loading and can make messaging pages feel faster for users.
Original PR description
Make it so that emoji data are not in bundle during page load. Task-2984923
Payments registered manually on invoices can now open the bank reconciliation view with the correct bank statement already selected. This helps accounting users complete reconciliation more accurately and reduces confusion when matching invoice payments to bank transactions.
Original PR description
When a payment is registered manually for an invoice first and then reconciled with a bank statement, the move is not linked with the statement line. It's necessary to pass the statement line id through the widget to filter the bank reconciliation widget with a correct bank statement line when redirecting from the invoice payment widget. task-2928299