Saturday, October 21, 2023
5 changes · master
Resolved issues and error corrections
This update improves test coverage for deleting attachments in public discussions, including checks that confirm access rules are respected. It helps reduce the risk of unauthorized attachment deletion while keeping the change limited to internal validation.
Original PR description
This allows better coverage of the feature and in particular its access check. Taken from https://github.com/odoo/odoo/pull/138330 to ease its diff.
This fixes a missing check used to identify managers in the Appraisals app's access rules. It helps ensure managers can access the appraisal goals they are supposed to manage without errors or blocked access.
Original PR description
Taken from https://github.com/odoo/enterprise/pull/49005 to ease its diff.
This change narrows a test mock in Web Studio so it only applies to the specific report editor search scenario it was meant to cover. This helps keep automated tests reliable without changing normal user-facing behavior.
Original PR description
This patch was designed to intercept a specific search call, not all of them. The scope of the patch is now arbitrary limited to when no params are given, which is how the expected intercept is calling it. It still makes no sense to do it this way but at least the test pass. Taken from https://github.com/odoo/enterprise/pull/49005 to ease its diff.
Portal users will no longer receive VoIP call information during startup. This avoids showing or processing call data for users who should not use the VoIP features, reducing confusion and unnecessary background work.
Original PR description
Taken from https://github.com/odoo/enterprise/pull/49005 to ease its diff.
This update makes an internal test independent from optional VoIP setup differences. It helps keep automated checks stable across environments, reducing maintenance effort and avoiding misleading test failures.
Original PR description
Depending on whether onsip is installed or not when the user setting is created this will have a different value, making the test harder to maintain than necessary.