Wednesday, April 30, 2025
2 changes · saas-18.3
Resolved issues and error corrections
This fixes a problem where customers using kiosk self-ordering could see a blank screen when trying to pay online. It also adds automated checks to ensure the payment QR code appears correctly, helping prevent the issue from returning.
Original PR description
- Fix issue where a blank screen appear in Kiosk when trying to pay when an order. - This recent issue was causeb by this UI revmap commit : https://github.com/odoo/odoo/pull/207148 - Add tour to make sure the QR code is generated when ordering in Kiosk with online payment. Steps to reproduce: - Configure a Kiosk with online payment - Open Kiosk - Create an order - Click on Pay - => Blank screen task-id :4756588 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Fixed an issue that could prevent Indian Point of Sale sessions from opening when products included HSN codes. This helps cashiers start sales sessions normally and avoids endless loading at the register.
Original PR description
Steps: ----------- - Install the l10n_in_pos module. - Open a POS session with products added `l10n_in_hsn_code`. Issue: ------------- - The session was not opening and was continuously loading. Cause: ---------- - Orderline class has a getter with the same name as the field `l10n_in_hsn_code`. FIX: ----------- - Removed `l10n_in_hsn_code` getter from Orderline class. task-4719868