Monday, September 4, 2023
3 changes
Resolved issues and error corrections
This fix updates automated walkthrough tests so their final steps no longer trigger unnecessary warning messages. It improves test reliability and reduces noise for teams maintaining quality across multiple Odoo apps, without changing day-to-day product behavior.
Original PR description
When we haven't provided a custom action, the tour step runs the default action. In the final step of the tour, when there is no `run` or `isCheck` provided, It shows warnings of 'ignoring action (auto) of last step' as it can lead to a race condition. This commit resolves the warnings: `ignoring action (auto) of last step` task-3429500 PR Community: https://github.com/odoo/odoo/pull/129239
This fixes a small naming issue in the Sign app by using the correct search action wording. It helps keep the signing template interface consistent and avoids confusion for users working with custom sign items.
The update fixes a validation rule for disallowed expense category codes that was not being applied in some cases. This helps prevent duplicate or incorrect category codes and improves consistency across companies.
Original PR description
This commit is a complement to this PR : https://github.com/odoo/enterprise/pull/46505 We are simply fixing the constraint that was never triggered since `company_id` is not required and has no default value. So we decided to make the constraint global instead of company dependent. opw-3463858