Friday, May 23, 2025
4 changes · saas-18.3
Resolved issues and error corrections
This fix restores Spanish Canary Islands withholding tax entries that were accidentally left out during a previous tax file reorganization. It ensures companies using the Canary Islands localization keep the expected tax mappings for correct accounting and reporting.
Original PR description
In commit https://github.com/odoo/odoo/commit/8b539c1f303f1b49916c29190c11dcf2cab57d2c, the withholding taxes were moved from the common tax file to the mainland tax file, but the canary islands was skipped. This brings back the Withholding taxes that were referenced in the old tax mapping. Task-4752335
This update adds test coverage for link editing behavior when the URL field is empty. It helps ensure users do not accidentally create links, existing links are removed correctly when cleared, and the editor keeps the popover open when more input is needed.
Original PR description
Added missing test cases not included in commit [1]. - Clicking outside the link popover should close the link popover without creating a link when URL is empty. - After clearing the link URL, clicking outside the popover should remove the existing link. - Pressing Enter inside the popover with an empty URL should not close the link popover. [1]: https://github.com/odoo/odoo/commit/8c49168b0a19853b88078462f8d61863ddb8c979
A missing test customer named Azure is now created before the sales product configurator test runs. This prevents an automated test from failing because expected customer data was unavailable, improving reliability of the test suite.
Original PR description
The test test_product_attribute_multi_type was failing due to the UI tour expecting a partner named "Azure" to appear in an autocomplete dropdown. However, this customer was not created as part of the test setup, causing the selector ul.ui-autocomplete > li > a:contains("Azure") to timeout.
This change introduces the creation of the "Azure" partner in the test environment before running the tour, ensuring the step that selects the customer can succeed.
build_error-161723Users can now archive or restore partner grades directly from the form view, instead of needing to switch to the list view. This makes managing partner grade records more consistent and convenient.
Original PR description
Before this commit, it was not possible to archive a partner grade from the form view, only from the list view. This commit adds this possibility.