Daily updates from Odoo
Tuesday, November 16, 2021
3 changes
Resolved issues and error corrections
The social demo data now points to the correct product images. This prevents broken or missing visuals in demo content, helping sample social posts display as intended.
Original PR description
Small oversight of odoo/odoo@d063d99 Task-2667024
This change updates Web Studio's automated tests to use the new attachment field names introduced by a related platform change. It helps keep report editing tests aligned with the latest system behavior and prevents false test failures during development.
Original PR description
Before this commit, the web_studio tests used the wrong field names after merging PR https://github.com/odoo/odoo/pull/78931. Previously, ir.attachment inherited by the web_editor only accomodated for images and used fields named image_width, image_height and image_src. After https://github.com/odoo/odoo/pull/78931 is merged, those fields will be renamed respectively to width, height and src. task-2618497 Com PR: https://github.com/odoo/odoo/pull/78931
The Field Service guided tour now returns to the correct task screen instead of accidentally opening the project task board. This prevents the automated tour from stopping midway, improving reliability of testing and onboarding flows.
Original PR description
This issue was raised as it was failing in the `Single App Test` Build.
The problem comes from the fact that the selector used in order to go
back to the task form view was actually triggering a back to the tasks
kanban view of the project.
Prior to this commit:
* The tour was stopping at step `Confirm the <b>time spent</b> on your task. <i>
Tip: a rounding of 15min has automatically been applied.</i>`.
After this test:
* The tour will run smoothly up to the end.
task-2692191