Daily updates from Odoo
Tuesday, March 19, 2024
2 changes · master
Code cleanup and technical improvements
Old reconciliation methods were removed because they were no longer used after the previous Reconciliation Widget was discontinued. This is an internal cleanup that reduces maintenance overhead without changing the user experience.
Original PR description
Remove dead methods. They became useless after the removal of the Reconciliation Widget in saas-16.3. Related: https://github.com/odoo/enterprise/commit/185ba32e0cf256e380508209a257ccf1bb0b7b20#diff-a54cd9b3b77439ad1f3f0b9ca7b516ba7197fa94099ab43fa61a39c811a301d7L556
The URL format used to identify actions has been renamed from “act” to “action” when no direct path is available. This makes links clearer and reduces confusion with record identifiers, with minimal impact for users.
Original PR description
When constructing the URL, if an action doesn't have a path, to identify the action, and to avoid confusion with the resId, we use a prefix followed by the action id or the action xml id. Before this commit, the prefix was 'act', now it's 'action'.