Thursday, September 5, 2024
3 changes · saas-17.1
Resolved issues and error corrections
The Point of Sale screen now limits product categories to two rows and adds scrolling when there are many categories. This prevents the category area from taking over the screen, making desktop browsing easier and cleaner for cashiers.
Original PR description
Before this commit, the PoS interface could become cluttered when hundreds of categories were loaded, covering the entire screen in desktop browsing. This commit addresses the issue by limiting the category display to two rows and adding a scrollbar for overflow, improving the user experience when there are many categories. Before:  After:  opw-3865072 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Point of Sale combo setup now accepts products even when they have no POS category or belong to categories outside the POS restriction settings. This prevents errors when staff add newer or differently categorized products to combos, making combo sales more reliable.
Original PR description
Steps: ============================= - Install the point_of_sale. - Create new products without pos categories or add those pos categories which are not present in restrict categories in pos settings. - Add the combo to office combo. - Use office combo in pos. Issue: ================================ - If new products are added to office combo then if the new products don't have product category then error occurred. Cause: ================================== - Domain is been restricted to pos_categ_ids, so if product does not have any category or have different category then iface_available_categ_ids then also error occurs. Fix: =================================== - Issue is been fixed by applying proper domain which allows product with and without product categories irrespective of iface_available_categ_ids. task-3762862
Restaurant staff can now merge one table's order into another without losing the existing bill on the destination table. The transfer and merge actions are combined into a clearer dialog, reducing mistakes and improving the table management flow.
Original PR description
Before this commit: ============================================================= - If table 1 is merge with table 2 then order of table 1 was transfer to table 2 but order of table 2 got vanished - Transfer and Merge were two different buttons in the UI After this commit: ============================================================== - now order of table 2 does not get vanished and order of table 1 is updated on table 2 and both tables get merged. - Transfer and Merge button are combined to enhance the user experience. - Dialog box is been updated with 3 buttons i.e. - Transfer - Merge into this bill - Discard task-3845696