Saturday, December 6, 2025
2 changes · master
Enhancements to existing features
This update strengthens our testing process for access controls within the VoIP module. Previously, tests relied on manual data manipulation, which was prone to errors and difficult to maintain. Now, tests utilize a more reliable method – 'has_access' – ensuring consistent and accurate verification of access rights.
Original PR description
In our tests for access rights, we manually do CRUD operations to check them. However, this approach is difficult to maintain and highly susceptible to changes in model fields. Therefore, we are switching to using has_access function for more robust verification. Forward-Port-Of: odoo/enterprise#101456
Resolved issues and error corrections
This update resolves a bug that prevented users from correctly navigating tax returns on mobile devices. The fix ensures the correct class is applied, allowing users to seamlessly return to the tax returns view after viewing a specific return. This improves the user experience for mobile users.
Original PR description
To reproduce the error : Occurring in 19.0 and maybe before Open the tax returns view on mobile view Click on a return Click on the arrow to go back to the returns view Fix : The class was not there so the props was getting a null. Solution : Added the class to be selected correctly task: 5334639 Forward-Port-Of: odoo/enterprise#101079