Thursday, October 10, 2024
4 changes · saas-17.2
Resolved issues and error corrections
Kitchen receipts in Point of Sale now show the complete product name, even when the name is very long. This helps kitchen staff clearly identify ordered items and reduces the risk of preparation mistakes.
Original PR description
Product with long names where not shown completely on the kitchen receipt Steps to reproduce: ------------------- * Add a kitchen printer to your PoS setup * Create a product with a really long name * Open PoS and complete an order with the product > Observation: The kithen receipt doesn't show the full name opw-4221336 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an internal web testing utility so it cleans up browser event handlers more reliably. It helps prevent test side effects and improves confidence in web interface quality checks without changing user-facing behavior.
Original PR description
This commit ensures that event listeners are removed using their prototype's `removeEventListener` method, as to ensure that any override will not be called during the cleanup. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The survey live session button styling was adjusted so the next or start button remains visible across different background choices. This helps participants navigate live surveys more reliably and reduces confusion during sessions.
Original PR description
Earlier next button in the live session was not visible for some backgrounds. This pr addresses the issue and adds a separate background color for the start button so it can be compatible with any background. Task-4210804
A broken step in the survey guided tour was corrected after a label change caused the tour to point to the wrong place. This helps keep the survey walkthrough reliable for users and reduces confusion during onboarding or testing.
Original PR description
**Before this commit:** - The existing selector fails due to the change in the the text of the `<a>` tag redirecting us to the survey. ref. to where it was changed--- https://github.com/odoo/odoo/pull/131710/files#diff-134fd6929e7c8db7a39038879bf9a01c9f4525ca8db1475974c74576ffd7e3fb --- **After this commit:** - The new selector ensures we get the tour pointer as desired. Task-**4207478**