Daily updates from Odoo
Friday, August 23, 2024
4 changes · master
Resolved issues and error corrections
Accounting report titles now match their updated menu names, avoiding confusion for users navigating reports. PDF exports also include proper side margins so report content no longer runs to the edge of the page.
Original PR description
In this commit: https://githu.com/odoo/enterprise/pull/67611/commits/982eaa3867576f581e5f12fa649a281d9407278b We renamed some reports menu item but we didn't change the name on top of the ui of the reports so there was a discordance. Before this commit the side of the pdf were extended to the side of the page. To resolve that issue adding a margin on the content of the pdf is enough. task: 4127269
The field service worksheet setup test now waits until the template window has fully closed before continuing. This reduces false failures in automated checks and helps keep the feature validation more reliable.
Original PR description
Before this commit, when the step on the `fsm_task_form_tour` tour saves the worksheet template creation, the save action will take some times to be able to generate a new worksheet model for that worksheet template. The problem is the tour does not wait enough time before doing the next steps. This commit adds a step to wait the form view dialog of the worksheet template is closed before doing the other steps. runbot-72641
The restaurant appointment screen now shows the correct booking icon again. This fixes a visual mistake from a previous change, helping staff recognize booking actions more easily.
Original PR description
In commit ed556a111ead0c9a1fe517173cc97c495d0d6ac7 the booking icon was replaced by mistaked. In this commit we revert to the original one.
This fixes an automated test that could fail because it clicked a pager button before it was ready. The change makes the test wait until the button is enabled, improving test reliability without changing user-facing behavior.
Original PR description
The tour changes the number of elements in the pager. We then check that the number of elements do change in the list. But the button stay disabled longer, which implies that we try to click on it too soon in the tour, failing it. We should wait for the button to be enabled before clicking on it. runbot-74835