Daily updates from Odoo
Wednesday, December 24, 2025
1 change
Code cleanup and technical improvements
This update replaces Float fields with Monetary fields across several Point of Sale modules (pos, pos_online_payment, l10n_se_pos, pos_pricer). This ensures accurate and consistent display of currency values in views and improves data integrity for financial transactions. It's a necessary update to align with Odoo's financial standards.
Original PR description
`point_of_sale`, `pos_online_payment`, `l10n_se_pos`, `pos_pricer` before this commit: ============== - Using Float fields to display currency values. - Some views did not display monetary data correctly,. after this commit: ============== - All currency-related fields have been replaced with Monetary fields instead of Float fields. - Views have been updated to follow the new approach for displaying monetary data consistently. Related community PR: odoo/odoo#191740 Related upgrade PR: odoo/upgrade#7298 Task-4424052