Sunday, July 27, 2025
3 changes · saas-18.3
Resolved issues and error corrections
Imported sales orders in Point of Sale now keep the tax position set on the original sales order, even when it differs from the customer's default tax setup. This helps ensure the right taxes are applied at checkout and reduces billing corrections.
Original PR description
When a sales order is imported into the PoS, the tax position does not match if the sales order has a different tax position than the one assigned to the partner. This commit ensures that the tax position will always be the one assigned to the sales order and not that of the partner. taskId: 4963118 Forward-Port-Of: odoo/odoo#220522 Forward-Port-Of: odoo/odoo#219869
Point of Sale now checks whether an order has already been sent for preparation before printing, and synchronizes the order status after printing. This prevents multiple devices from printing the same preparation ticket, reducing confusion and duplicate work in restaurants or shops.
Original PR description
Before this change, when a device sent an order in preparation via the ticket printer, this could result in the same order being printed by multiple devices, as the order was not synchronized after it was sent. The error is a bit tricky, because if the user had installed a preparation screen, the order was sent to the preparation screen via syncAllOrders. In this case, the order was correctly synchronized and the other devices were informed of the changes. This commit adds two things. - We check the server before sending the order to preparation to make sure it has not already been sent. - Even when the user does not have a preparation display, the order will be synchronized after being sent to a printer. Forward-Port-Of: odoo/odoo#220706 Forward-Port-Of: odoo/odoo#220535
This fix prevents the same point-of-sale preparation order from being printed by multiple devices. The system now checks whether an order was already sent and synchronizes the order status after printing, reducing duplicate work and confusion for staff.
Original PR description
*: pos_urban_piper_enhancements Before this change, when a device sent an order in preparation via the ticket printer, this could result in the same order being printed by multiple devices, as the order was not synchronized after it was sent. The error is a bit tricky, because if the user had installed a preparation screen, the order was sent to the preparation screen via syncAllOrders. In this case, the order was correctly synchronized and the other devices were informed of the changes. This commit adds two things. - We check the server before sending the order to preparation to make sure it has not already been sent. - Even when the user does not have a preparation display, the order will be synchronized after being sent to a printer. Forward-Port-Of: odoo/enterprise#91090 Forward-Port-Of: odoo/enterprise#91006