Friday, April 1, 2022
2 changes · master
Enhancements to existing features
Web Studio's internal tests now use a different partner field because the previous credit limit field is being moved to the accounting area. This keeps automated checks aligned with the broader product structure and helps avoid test failures during future updates.
Original PR description
`credit_limit` is being moved from `base` to `account` in the following PR : https://github.com/odoo/odoo/pull/83205 It is being replaced by `partner_latitude`, as it is also being done in the `base` and `base_import` tests in the aforementioned PR.
The Luxembourg EC Sales Report was updated to process report fields more efficiently. This is an internal code improvement that can help keep report generation cleaner and easier to maintain, without changing the report’s business content.
Original PR description
Slight improvements in l10n_lu EC Sales Report code. The iteration over fields and the lookup in fields_map is not efficient. Each id should be its own key, the additional for loop is thus unnecessary. Task: 2791523