Daily updates from Odoo
Saturday, March 7, 2026
8 changes · master
Resolved issues and error corrections
This update removes a display field ('Visible Internally Only') from the customer rating form in the Helpdesk module. This field was no longer needed as customer ratings are no longer visible on the website. This cleanup improves the user experience and reduces unnecessary complexity.
Original PR description
**Steps to reproduce:** - Open a Helpdesk ticket with a customer rating. - View the rating form. - Observe the field ‘Visible Internally Only’ still showing. **Issue:** - The field is displayed even though ratings are no longer shown on the website. **Reason:** - The field is now irrelevant but still present in the view. **Fix:** - Invisible the ‘Visible Internally Only’ field from the customer rating form in the affected version. **Task id - 5359052** Forward-Port-Of: odoo/enterprise#109287 Forward-Port-Of: odoo/enterprise#100686
This update corrects a visual issue where the unit display (hours/days) for KPIs in the sale timesheet was misaligned. The change restores the original layout, ensuring accurate and consistent KPI reporting. This resolves a minor display problem impacting user readability.
Original PR description
Due to the recent refactoring of the `formatFloatTime` formatter in odoo/enterprise#108072, the KPIs lost their layout, resulting in a misaligned display. This commit restores the original layour for the KPI header, ensuring the unit (hours/days) is correctly shown next to the value. Forward-Port-Of: odoo/enterprise#109809
This update removes unnecessary debugging code that was inadvertently included in account reports. Previously, this code was being sent to the JavaScript interface, causing potential issues with report data. This change ensures cleaner report data and a more stable user experience.
Original PR description
Since this commit https://github.com/odoo/enterprise/commit/265629249ec71797b6387b46d2245154159b0c00 the code has been returned in the report information, therefore the 'code' key is present in the JSON sent to the JS. no-task <img width="884" height="676" alt="image" src="https://github.com/user-attachments/assets/1f22cc29-2d3d-4c61-9380-e1de77543339" />
This update addresses a technical issue where discussion counters and comments weren't being properly updated after recent improvements to the Odoo Enterprise platform. The fix ensures accurate tracking of discussion activity, improving the overall functionality of the discussion module.
Original PR description
The file was not updated following recent improvements. https://github.com/odoo/odoo/pull/252508
This update resolves an issue where tags in German financial reports were incorrectly sorted, causing problems with the auto-complete feature. The fix ensures tags are properly ordered, improving the user experience and report accuracy. Additional tests have been added to prevent similar issues in the future.
Original PR description
Commit https://github.com/odoo/odoo/commit/db0d499952192ede0def2a070e103ba67952387c inverted some tags which is wrong Tags must be sorted for the auto complete to work properly Improving tests to catch more errors opw-5415426 Forward-Port-Of: odoo/enterprise#108848
This update resolves an issue where users received empty deprecation schedule reports if customer customizations to their accounting records caused conflicts with Odoo's internal calculations. The fix ensures accurate report generation by granting administrative access, guaranteeing correct data retrieval for asset depreciation schedules.
Original PR description
Following odoo/enterprise@ece0405785, in case a customer modified the `account.move.line` record rules in a way which is incompatible with the AML shadowing, user will only get an empty deprecation schedule report. This commit as a sudo, to ensure we get a correct report, access rights being already check for `account.asset` records. Forward-Port-Of: odoo/enterprise#108901
This update refines how Odoo handles binary files (like invoices or statements) by ensuring they are consistently represented as `BinaryValue` objects. This change improves data integrity and compatibility across various Odoo modules, particularly those dealing with financial reporting and document imports. It's a standard best practice for data type consistency.
Original PR description
https://github.com/odoo/odoo/pull/244421
This update resolves a problem that occurred when the demo version of Odoo Enterprise was used. Specifically, certain buttons were triggered unexpectedly, causing disruptions. This change ensures the demo mode functions correctly, providing a stable and reliable experience for testing and evaluation.
Original PR description
community https://github.com/odoo/enterprise/pull/97209 Forward-Port-Of: odoo/enterprise#109792