Thursday, July 11, 2024
3 changes · saas-17.2
Resolved issues and error corrections
The point of sale preparation display now ignores product categories that are not configured for that display. This prevents errors during order preparation and helps kitchen or service teams keep using the screen reliably.
Original PR description
Before this commit, if one of the product's categories was not included in the preparation display, it would lead to an error. opw-4012616
Leaving a picking screen in the Barcode app without making changes no longer creates an extra empty backorder line. This keeps warehouse documents accurate and avoids confusion from zero-demand stock moves.
Original PR description
**Current behavior:** If you create a picking with some move and confirm it, then open it in the barcod app, then *without doing anything inside barcode* simply exit the picking view, there will be an additional move created on the picking with 0 demand. **Expected behavior:** There should be no additoinal move added in this scenario. **Steps to reproduce:** 1. Create a picking with a move, confirm it 2. Open the picking inside barcode, then click the back button 3. Go look at the picking in the backend to see the new move **Cause of the issue:** We are creating backorder moves for all *incomplete* moves. **Fix:** Create backorder moves only for *partially complete* moves. opw-3995523
Fixes a broken guided tour in Website Slides so users can complete the walkthrough as expected. The update corrects timing and button-targeting issues caused by earlier library and design changes.
Original PR description
**Issue** From v17.2, the website_slides tour is not working because of some changes in the tour library. Commit from where I think the bug is coming https://github.com/odoo/odoo/commit/b334055c82c4350b4122e620ae76179a9fc4eaa2 and later due to the website design change another step was also failing and that should be coming this commit https://github.com/odoo/odoo/commit/80e3f53550b7ed74ac18bb09ea542c9e77c9a61d **Technical** The "Add to content" is loading before our frame is ready due to this the position of the pointer was wrong. Due to the design change tour was not able to point the publish btn **After this PR** Now the tour is working properly. Task-3960962