Daily updates from Odoo
Thursday, August 8, 2024
3 changes · saas-17.2
Resolved issues and error corrections
This fixes an issue where IoT devices could be blocked from connecting to Odoo's live update service because they do not send browser version information. The check now applies only to browser connections, avoiding unnecessary IoT device updates and helping existing deployments keep working.
Original PR description
Since [1], outdated websocket connections are refused by the server. However, the IOT connects to the websocket endpoint without passing any version. In order to pass the version, IOT devices should be updated which is cumbersome. This PR fixes the issue by enforcing this check for browsers only. [1]: https://github.com/odoo/odoo/pull/174962
Fixed an issue where Indian POS receipts did not show tax information in the HSN summary for products with HSN codes. This ensures receipts include the expected tax breakdown, helping businesses provide accurate billing information.
Original PR description
Steps to reproduce : -------------------------- - Install pos and l10n_in - Go to products - Create a product with HSN code and set tax - Open a session - Add that product to cart - Order and pay the bill Issue : ------- Opened reciept doesn't contain tax information on the HSN summary section Cause : --------- Trying to fetch data which wasn't sent from arguments causing the related computations NaN and 0. Fix : ----- Passed the argument correctly. task: 4095698
This fixes how Point of Sale calculates taxed list prices by using the correct fiscal position for each order, including orders that have already been paid. It helps prevent inaccurate displayed or computed prices in specific checkout scenarios.
Original PR description
Before this commit, the computation of the orderLine taxed list price incorrectly used the selected order's fiscal position, even for paid orders. This could lead to inaccurate pricing in certain scenarios. opw-4093746 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr