Daily updates from Odoo
Sunday, December 28, 2025
3 changes · saas-19.1
Resolved issues and error corrections
This update fixes a potential issue where sales orders linked to partners without addresses could be paid through the Point of Sale (PoS) system. Previously, this resulted in errors preventing session closure. This change ensures compliance with Fiskaly regulations and prevents payment failures.
Original PR description
### Description According to Fiskaly regulations, partners linked to PoS orders must have an address (street and zip code). A previous [commit] (https://github.com/odoo/enterprise/commit/af3a59ee8492693e20807ae30dc58038229f96cb) prevented adding such a client on a normal flow. However, before this commit it was still possible to pay a sale order linked to such a contact through PoS and this will raise a bad request error when closing the session and will prevent closing it. ### How to reproduce: * Setup a Fiskaly PoS config and open it. * Create a normal sale order linked to a partner with no address. * Select the sale order from pos and pay it. * Close the session opw-5228944 Forward-Port-Of: odoo/odoo#235331
This update fixes a potential issue where sales orders linked to partners without addresses could be paid through the Point of Sale (PoS) system. Previously, this would cause payment errors and prevent session closure. This change ensures compliance with Fiskaly regulations by requiring a valid address for PoS orders, improving data accuracy and preventing payment disruptions.
Original PR description
### Description According to Fiskaly regulations, partners linked to PoS orders must have an address (street and zip code). A previous [commit] (https://github.com/odoo/enterprise/commit/af3a59ee8492693e20807ae30dc58038229f96cb) prevented adding such a client on a normal flow. However, before this commit it was still possible to pay a sale order linked to such a contact through PoS and this will raise a bad request error when closing the session and will prevent closing it. ### How to reproduce: * Setup a Fiskaly PoS config and open it. * Create a normal sale order linked to a partner with no address. * Select the sale order from pos and pay it. * Close the session Community PR: https://github.com/odoo/odoo/pull/235331 opw-5228944 Forward-Port-Of: odoo/enterprise#99286
This update fixes a vulnerability in the Point of Sale testing process. Previously, tests relied on translated button labels, making them susceptible to issues when translations changed. The fix ensures tests use the default language, improving stability and reducing the risk of test failures.
Original PR description
In the tour added in this commit[^1], they switched the language to French to test `,` as a decimal separator. The test depends on a button label to click that was translated to French. This is pretty brittle since translations can change, and also not necessary for what we need to test. We just change the decimal separator on the current language in the test so the label can keep the source language. This is also done in other places in the tours. (Issue found when translating saas-19.1) [^1]: https://github.com/odoo/odoo/commit/c712835cf7fc364a50ad9797f933df148720e829 Forward-Port-Of: odoo/odoo#241485