Friday, December 27, 2024
2 changes · saas-17.4
Resolved issues and error corrections
This fix prevents the restaurant point-of-sale from creating an extra order when the receipt screen appears during online payment. It helps avoid payment-related confusion and keeps restaurant orders accurate at checkout.
Original PR description
Before this commit, proceeding with online payment would cause some issues. This was because a new order was being added when the ReceiptScreen was shown. opw-4432110 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Splitting a restaurant point-of-sale order now preserves ordered and unordered quantity details on each line. This prevents kitchen preparation displays from showing incorrect quantities, helping staff fulfill orders reliably after a bill is split.
Original PR description
pos*: pos_restaurant, pos_preparation_display Before this commit: ============== - Splitting an order caused the loss of ordered and unordered quantity information for the order lines. After this commit: ============== - Ordered and unordered quantity information is preserved for all order lines. - Preparation display quantities remain unaffected. Task - 4114041