Monday, May 12, 2025
5 changes · saas-18.2
Resolved issues and error corrections
This update fixes an issue where users could encounter an error when using the browser or app back action from a page with a search bar. It improves navigation reliability and prevents an avoidable interruption in day-to-day use.
Original PR description
Before this commit a traceback was occurring on going back from a view with search bar. After this commit the traceback will not occur anymore on going back from a view with search bar. task-4735022 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Point of Sale now skips all receipt printing preparation when no printer is available. This avoids unnecessary image loading and rendering work, helping keep automated tests more reliable without changing the cashier experience.
Original PR description
the code that tried to print would do some preparation (render a full component node, load related images) witout checking if there even was a device to print the ticket. The preparation steps (specifically loading images), could be a source of indeteriminism when running test tours since we don't await properly the printing step (see https://github.com/odoo/odoo/pull/201578/files#diff-10ebe5a60b7906fdb3a686b58676079783540b2c91b3423faadc27a0267ba393R33) the revision cuts short the printing when there is no printing device and therefore avoids the tests issues. runbot errors: https://runbot.odoo.com/odoo/error/181566 https://runbot.odoo.com/odoo/error/160941 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Discuss app's right-side panel now uses the same background color as the header and left sidebar. This makes sections like channel member lists easier to distinguish from the message area and improves readability.
Original PR description
The bg color of the right panel in discuss app, e.g. channel member list, lack same bg color as header and left sidebar. As a result, the bg was the same as the message list, which made it hard to read due to being separated by only slight border in-between. This commit puts the same bg color on this panel in discuss app as header and left sidebar.
Message bubbles in the Mail app now use a lighter border in dark mode. This makes grouped messages look cleaner and avoids the misleading impression that there is extra spacing between them.
Original PR description
Before this commit, message bubble border was too dark. This gave the impression that squashed messages had too much spacing.
Automated checks for spreadsheet documents are made more reliable by ensuring the expected folder appears where the test can find it. This reduces random test failures and helps keep releases moving smoothly without changing everyday user behavior.
Original PR description
Following the investigation made in https://github.com/odoo/enterprise/pull/83486 the tours can sometimes fail as they try to click on a folder which is not present in the kanban view. The fix in the PR above should fix the issue but we could also go a step further and set a sequence on the folder to ensure its presence on the first page of folders. Task-4781898