Friday, March 7, 2025
3 changes · saas-18.1
Resolved issues and error corrections
A typo was corrected in the website Cloudflare Turnstile integration. This restores the verification flow so visitors can complete protected website actions without being blocked by the error.
Original PR description
The typo here broke the turnstile flow.
Users are now warned before archiving products that are still used in draft orders during an open Point of Sale session. This prevents session reopening errors and keeps sales data consistent, including for localized configurations such as India.
Original PR description
Before this commit: ==================== Archiving a product that is part of draft orderlines in an open session caused an error in the Indian localization. Specifically, the system threw a "l10n_in_hsn_code" error when attempting to reopen the session, as the archived product was no longer accessible. After this commit: ==================== A user-friendly error message is displayed to notify the user about the archiving products when the session is open and products are in use, ensuring data consistency and preventing errors when reopening sessions. Task-4518025
When restaurant staff merge orders from one table into another, the system now keeps the correct taxes on all order lines. This prevents underreported or missing tax amounts in the final POS order records after a table merge.
Original PR description
Merging orders of two tables in POS restaurant only applies the product tax on the order lines of the destination table. How to reproduce the issue: - In pos select table 1 and order a product. - Select table 2 and order another product. - Merge table 1 into table 2. In Orders/Orders the pos order corresponding to the merged time does not have the tax displayed for the lines of table 1. In pos_store of pos_restaurant in handlePreparationHistory we did not transfer the tax_ids from sourceOrder into the newly created order line. opw-4563168 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr