Wednesday, January 17, 2024
27 changes
Resolved issues and error corrections
This fix prevents Google Meet links from being automatically added to calendar events when a physical location is already specified. Previously, users would receive both a location and a Google Meet link in the same event, causing confusion about the actual meeting format. Now, the system correctly checks if a location is set before generating a virtual meeting link.
Original PR description
Issue
When a location is set on an event, the google meet link is also
generated, leading to confusion about the meeting format.
Steps to reproduce
- Create an event with a location
- Sync the Calendar with Google.
- Observe that a Google Meet link is sent with the email.
Solution
check if the loacation is set before generating a google meet link.
opw-3589379
---
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Forward-Port-Of: odoo/odoo#146561This update fixes a performance issue in spreadsheets where unnecessary network requests were being made when using relational filters without default values. The fix prevents these wasteful data requests from being triggered during spreadsheet loading, resulting in faster performance and reduced server load.
Original PR description
- define a relational global filter without any default value. - reference that filter with `ODOO.FILTER.VALUE` => when loading the spreadsheet, a `read` RPC is triggered with an empty list of ids. This is: - useless network call - useless evaluation when the RPC resolves --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr