Sunday, August 3, 2025
2 changes · master
Resolved issues and error corrections
Very small negative values that round to zero now display as 0.00 instead of -0.00. This avoids confusing negative-looking amounts in Luxembourg electronic reports and keeps displayed figures aligned with expected financial presentation.
Original PR description
float_repr(-0.00000001, 2)
formatFloat(-0.00000001, { digits: [16, 2] })
Before: "-0.00"
After: "0.00"
opw-4685953
Forward-Port-Of: odoo/enterprise#91081
Forward-Port-Of: odoo/enterprise#90992This fix restores previously commented-out code in the UrbanPiper point-of-sale integration. It helps ensure the integration continues working as intended after an earlier automated merge removed or disabled needed logic.
Original PR description
After this commit: - Code is been restored which was merged in the fw-bot PR Ref PR : https://github.com/odoo/enterprise/pull/91578/files Forward-Port-Of: odoo/enterprise#91583