Tuesday, May 27, 2025
5 changes · 17.0
Resolved issues and error corrections
Website pages now keep a solid white page background even if the body color is set to transparent. This prevents hidden fallback content from showing through, keeping pages like Contact Us visually clean for visitors.
Original PR description
Steps to reproduce: - Enter Website edit mode. - Click on the Theme tab. - Click the 4th colorpicker in the colors options to change the body background color. - Choose a transparent color. - Save and exit edit mode. - Navigate to the "Contact Us" page. - Issue: The fallback iframe is visible beneath the website iframe. To prevent this, this commit adds a white background to the website's HTML element, so the fallback iframe will never be visible. task-4816245
The TDS payment wizard no longer shows a warning when the tax calculation base is higher than the payment amount. This avoids unnecessary confusion for users because that situation can be valid in Indian withholding tax workflows.
Original PR description
Before this commit: - A warning was shown in the TDS payment wizard when the base amount used for TDS calculation was greater than the amount being paid. - However, this warning was misleading, as the TDS base amount can exceed the paid amount. After this commit: - The warning has been removed from the TDS payment wizard. task-4787113
This fix prevents an error when setting up or changing mail activity plans by ensuring the needed model information is available. It improves reliability for users configuring planned activities, with no expected change to normal workflows beyond avoiding the crash.
Original PR description
Trigger an onchange requiring res_model_id to be returned. Before this commit, there was an error because the dependency field "res_model" was False and injected into a function that required it not to be. After this commit, there is no crash. runbot-error-223466 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 fix adds coverage to ensure manufacturing work order costs are calculated correctly when multiple employees work on the same order. It helps prevent the same working time from being counted more than once, improving cost accuracy for production reporting.
Original PR description
Test coverage for community-side diff about calculating a workcenter's cost in a way that omits counting duration within a working interval that was previously counted. opw-4430375
The follow-up report now hides the company field from view. This removes an unnecessary field from the screen, making the report cleaner and reducing possible confusion for users.
Original PR description
This commit make the company field on the followup report invisible. opw-46693397