Daily updates from Odoo
Wednesday, April 10, 2024
4 changes · 17.0
Enhancements to existing features
The Luxembourg payroll tax brackets have been updated to reflect the official changes effective January 1, 2024. This ensures that employee tax calculations are accurate and compliant with the latest Luxembourg tax regulations.
Original PR description
The tax brackets have been updated since 01-01-2024 https://impotsdirects.public.lu/dam-assets/fr/baremes/baremes-impot-20240101-fr.pdf https://impotsdirects.public.lu/fr/baremes.html#Ex Add new parameter values to reflect the change. task-3748852
Database indexes have been added to the quality check system to speed up the Shop Floor App when it opens. This optimization reduces loading time and improves the overall user experience when quality management features are enabled in manufacturing operations.
Original PR description
Add missing indexes on quality_check. This speeds up search_read on mrp.production when the quality/quality_mrp modules are installed. It's mostly useful at the opening of the Shop Floor App to turn Seq Scans into Index Scans. COM PR: https://github.com/odoo/odoo/pull/160349
Database indexes have been added to the Manufacturing module to speed up the Shop Floor app when it loads production data. This optimization reduces the time needed to retrieve manufacturing orders and work orders, resulting in a faster user experience when opening the Shop Floor application.
Original PR description
Add missing indexes on stock.move and mrp.workorder to speed up search_read on mrp.production. That's mostly useful at the opening of the Shop Floor app. This turns Seq scans into Index scan, leading to an overall speedup. ENT PR: https://github.com/odoo/enterprise/pull/59998 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Database indexes have been added to improve the speed of analytic line queries, particularly during sales order creation. This optimization reduces database load and improves system responsiveness by making frequently-used searches more efficient.
Original PR description
## Description Add indexes affecting queries related to `account.analytic.line`. Based on heuristics like domains in `search`/`read_group` that are not really selective, or being an inverse of One2many. Some of these searches are on code-paths that are frequent, like creation of an SO. The goal is to reduce the number of Seq.Scan or non-selective Index Scan. ## Reference task-3724844 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr