Tuesday, February 23, 2021
2 changes · master
Resolved issues and error corrections
The mail app will no longer show messages for notifications that are intended for other parts of Odoo. This keeps the browser console cleaner and helps teams focus on relevant issues without changing user-facing behavior.
Original PR description
The `mail` module logs bus notifications it does not handle. However, some notifications are not meant to be handled by `mail` and it's perfectly fine. e.g. spreadsheet collaboration notifications https://github.com/odoo/enterprise/pull/16137 This commit removes the log to avoid useless noise in the console. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update makes a small internal fix to how invoice extraction decides whether send or resend options should be shown. It improves code consistency and helps reduce the chance of issues in that invoice workflow, with no expected change to everyday user behavior.
Original PR description
…ulti Previously, this function was getting the record by argument. It is now an api.multi as it is cleaner.