Friday, November 21, 2025
6 changes · 17.0
Resolved issues and error corrections
This fix ensures that a call is removed from the VOIP softphone as soon as it is unlinked. It prevents users from seeing outdated calls that have already been deleted, keeping the interface accurate and less confusing.
Original PR description
A call that was unlinked previously remained visible in the VOIP softphone. This fix ensures that the call is correctly removed from the softphone view as soon as it is unlinked. Task-5262162
This change fixes an incorrect Dutch translation for the 9% sales tax description. It helps ensure tax labels are shown clearly and accurately to users in the Dutch localization.
Original PR description
The traduction of te description of the 9% ST tax was wrong and was TVA to get back on a sale tax task-5217323
This fix ensures that when a report filter is enabled on a combined report, it is also enabled on the report’s sections when needed. As a result, the filter will correctly appear in the user interface instead of being missing in some report views.
Original PR description
When using a composite report whose sections aren't used independently, enabling that filter on the composite report needs to enable it on their sections as well, else it won't show in the UI. This is the standard behavior for all report filters.
This change prevents the system from trying to load a non-existent file when stopping a ringtone. It improves reliability by clearing the audio source in a way browsers handle correctly, avoiding unnecessary background requests.
Original PR description
Setting the src of an element to null triggers a GET HTTP request to /null. This is not the intended behavior; we want to reset the source so that it is not linked to any file, but the browser interprets it as an attempt to load a file called "null". This commit fixes the problem by resetting the source using removeAttribute instead. [Task-5349985](https://www.odoo.com/odoo/project/5778/tasks/5349985)
This change fixes an issue where a filter enabled on a combined financial report could fail to appear in the user interface. It ensures the same filter is also enabled on the report sections underneath, so report options behave consistently and users can actually see and use them.
Original PR description
When using a composite report whose sections aren't used independently, enabling that filter on the composite report needs to enable it on their sections as well, else it won't show in the UI. This is the standard behavior for all report filters.
This change ensures that when a filter is enabled on a composite financial report, the same filter is also applied to its sections. As a result, the filter now appears correctly in the user interface and behaves consistently with other report filters.
Original PR description
When using a composite report whose sections aren't used independently, enabling that filter on the composite report needs to enable it on their sections as well, else it won't show in the UI. This is the standard behavior for all report filters. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr