Daily updates from Odoo
Tuesday, May 26, 2020
3 changes · master
Resolved issues and error corrections
The mobile app no longer vibrates when connection is lost or restored while running in the background. Users will still see the in-app text notification, reducing unnecessary interruptions and confusion.
Original PR description
Before this commit, the phone vibrated and a notification was displayed in case of connection loss/restore. This vibration seems annoying when the Odoo app is on background as we don't know what's happening. This is why we decided to remove it. The text notification inside the webview is enough. Task ID : 2207465
This fix makes an automated Web Studio test wait for the sidebar to fully refresh before continuing. It helps avoid intermittent test failures, supporting more stable quality checks without changing user-facing behavior.
Original PR description
Adding the second rule will trigger a complete redraw of the sidebar's content, which might make the content of the selector for the first domain button stale by the time it tries to run. Instead of waiting for the snack bar to be done, wait for a second approval rule to be present in the dom to ensure that this step only runs once the sidebar's dom is completely redrawn.
In the accounting list view, action buttons for grouped journal items now remain visible when users hover over any row within an expanded group, not just the group header. This makes common actions like edit, reverse, and duplicate easier to access and reduces confusion during review work.
Original PR description
PURPOSE: Currently, In account_move_line's new default grouped by list view, when we mouseover on the grouped by header row then it will display the buttons for edit, reverse and duplicate. but when you mouseover on the expanded rows of that particular group will not show the buttons for that group. SPEC: we have resolved this issue by toggling class on hovering on the expanded rows. and used that class in css to check the visibility of the group buttons. Task : 2069688