Tuesday, October 28, 2025
4 changes · master
Enhancements to existing features
The Documents search view has been simplified by removing extra filters that were not needed. This makes it easier for users to find the relevant filtering options when working with documents.
Original PR description
This commit removes the extra 'Documents' and 'Hide shortcut' filters from the documents search view to make the filter list simpler and keep only the relevant options. task-5170118
Property selection values now return their internal name rather than their display label by default. This improves consistency for payroll-related property data and reduces ambiguity when values are used across business processes or integrations.
Original PR description
Purpose ======= Followup of odoo/odoo/pull/232800 , when getting a property selection, we want to return the name by default instead of the label.
The customer ticket page now avoids repeating the same sales timesheet feature check several times. This reduces unnecessary processing and should make the page slightly more efficient without changing what users see.
Original PR description
helpdesk, helpdesk_sale_timesheet: reduce multiple calls ---------------------- In the `/my/tickets` route, the `_check_sale_timesheet_feature_enabled` method was called three times (for search input, search groupby, and value preparation). This commit passes the result of `_check_sale_timesheet_feature_enabled` in an argument, reducing the number of calls. the argument is now used in both search input and search groupby, improving performance. helpdesk: removed redundant method -------------- Removed the `_prepare_portal_layout_values` method as it only called the super method without any changes, making it unnecessary. task-4513671
Demo data for WhatsApp accounts has been added back. This helps teams and evaluators see example WhatsApp account setup when trying or demonstrating the app.
Original PR description
Purpose of this commit, Adding back the demo data for whatsapp accounts. revert: https://github.com/odoo/enterprise/pull/97138 task-5172791 Forward-Port-Of: odoo/enterprise#98135