Wednesday, May 21, 2025
5 changes · saas-18.1
Resolved issues and error corrections
This fixes an unreliable automated test related to page reload handling after a connection interruption. The change helps reduce false failures in Odoo's validation pipeline, making releases and maintenance more dependable without changing user-facing behavior.
Original PR description
This commit fixes the `disconnect during vacuum should ask for reload` test that was non-deterministic as it was triggering websocket reconnection too early, resulting in the wrong event being sent. fixes runbot-223185 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes an unstable automated test for Google Address Autocomplete that could fail depending on timing. The change helps keep quality checks reliable without changing the customer-facing address entry experience.
Original PR description
runbot-error-181592 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Updates internal test expectations for the Appointment HR area so automated checks pass reliably for single-app setups. This helps keep the release validation pipeline healthy without changing customer-facing appointment behavior.
Original PR description
Single app require an additional query. Let us fix runbot, and investigate when we have time (aka: haha).
Approval-generated purchase orders now better reflect the intended unit of measure and pricing. This helps reduce manual corrections and supports more accurate purchasing workflows.
Original PR description
This commit adjust the tests for the changes made in odoo/odoo#205525. Task-4471379
There is a missing ``s`` in the translation in ``pt_BR`` language. Traceback: ``` ValueError: incomplete format File "/home/odoo/src/odoo/odoo/tools/translate.py", line 422, in get_translation return translation % args ``` This issue was introduced in this commit:https://github.com/odoo/enterprise/commit/12c9eee514868f627c581e367e566458520ae122 https://github.com/odoo/enterprise/blob/9d51f5171b3c2478599dde1ce991c90fa6fed32b/l10n_br_avatax/i18n/pt_BR.po#L1156 Here, the ``s`` i
Original PR description
There is a missing ``s`` in the translation in ``pt_BR`` language.
Traceback:
```
ValueError: incomplete format
File "/home/odoo/src/odoo/odoo/tools/translate.py", line 422, in get_translation
return translation % args
```
This issue was introduced in this commit:https://github.com/odoo/enterprise/commit/12c9eee514868f627c581e367e566458520ae122
https://github.com/odoo/enterprise/blob/9d51f5171b3c2478599dde1ce991c90fa6fed32b/l10n_br_avatax/i18n/pt_BR.po#L1156 Here, the ``s`` is missing at the end of ``%(errors)``
It should be ``%(errors)s``.
sentry-6616622354