Wednesday, January 17, 2024
30 changes
Resolved issues and error corrections
This update reverts a previous change that was causing formatting problems in customer feedback messages. The original fix applied an inline display style too broadly, which broke the normal layout of text elements. The team is reverting this change while they work on a better solution to address the underlying issue with unwanted line breaks in helpdesk rating feedback.
Original PR description
This reverts commit 185adf6fb487fa260bb6dfe985638bc545de7fa2. The change was made to "fix" line breaks with rating feedback in helpdesk. However, it's not ok to apply `inline` display layout for all non-user made message body, as usual block display is expected for html tags like `<div>` or `<p>`. The correct fix should be to remove these unwanted `<br>` in the feedback rating messages. We don't know how they appeared, but this is a specific minor issue in helpdesk rating, so reverting the fix is a higher priority. Forward-Port-Of: odoo/odoo#149516
This update fixes two display problems when adding videos to Image Gallery and Images Wall page sections: videos now display at the correct size instead of appearing too small, and the spacing option now works properly with videos. While these sections were originally designed for images only, users can now add videos with proper formatting.
Original PR description
[FIX] website: fix video in Image Gallery and Images Wall Steps to reproduce: bug 1: - Enter edit mode. - Drag and drop an "Image Gallery" snippet onto the page. - Double-click on an image within the…
[FIX] website: fix video in Image Gallery and Images Wall
Steps to reproduce:
bug 1:
- Enter edit mode.
- Drag and drop an "Image Gallery" snippet onto the page.
- Double-click on an image within the snippet.
- In the media dialog, click the "Video" tab.
- Copy-paste a YouTube video URL into the URL input.
- Save the media dialog by clicking on the "Add" button.
- Bug: The video is very small.
bug 2:
- Drag and drop an "Images Wall" snippet onto the page.
- Double-click on an image within the snippet.
- In the media dialog, click the "Video" tab.
- Copy-paste a YouTube video URL into the URL input.
- Save the media dialog by clicking on the "Add" button.
- Bug: the spacing around the video is not correct and the "spacing"
option does not work for the video.
Note that the "image gallery" snippet (also the "image wall" snippet)
was not initially designed to handle anything other than images. When
you click on the "Add" button of the snippet, you can only add images.
However, by following the steps described above, it's possible to work
around this limitation and add a video to the snippet. Since this was
not part of the original plan, several options do not function correctly
with a video.
Instead of preventing the addition of videos, we have chosen to allow it
and focus on fixing the main issues (the small size of the video and the
"spacing" option which does not work with videos). So, if someone
specifically wants to add a video, it's currently possible, though some
features may not work as intended.
task-3597156
Forward-Port-Of: odoo/odoo#148637Fixed the Dutch tax report to correctly display Section 5 (Voorbelasting, kleineondernemersregeling en totaal) without showing the total amount. This ensures the tax report displays the correct information structure when users define the current fiscal year.
Original PR description
Steps to reproduce: - Open Tax report - Define "current fiscal year" Issue: Dutch tax report should not display the totaal of `Rubriek 5: Voorbelasting, kleineondernemersregeling en totaal (BTW)` opw-3446056 Forward-Port-Of: odoo/odoo#143841
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