Tuesday, March 24, 2026
5 changes · master
Enhancements to existing features
This update simplifies the configuration of the timesheet timer feature within Odoo Enterprise. A redundant argument was removed from the code, streamlining the process and improving code clarity. This change ensures the timesheet timer functionality continues to operate efficiently without unnecessary complexity.
Original PR description
Match the signature of the parent definition. The added argument is never used directly (aside from a single test), therefore we can just remove it.
This pull request updates the website's subscription functionality to align with recent changes in the Odoo community. These updates ensure consistent branding and features across all Odoo Enterprise versions. This improves the user experience for customers managing subscriptions.
Original PR description
Community PR: - https://github.com/odoo/odoo/pull/240214 task-5167703
This update prioritizes 'contains' and 'does not contain' operators within the Web Studio domain selector for Char, Text, and HTML fields. This change makes it easier for users to quickly find and apply common text-based filters, enhancing the overall usability of the platform.
Original PR description
In the domain selector, **Char, Text,** and **HTML** fields currently list their operators in this order: =, !=, ilike, not ilike, starts with, set, not set. However, **"contains" (ilike)** and **"does not contain" (not ilike)** are by far the most natural and frequently used operators when filtering on text-based fields. Reordering the list to surface these operators first improves discoverability. Community: https://github.com/odoo/odoo/pull/254643 task-6023007
This update simplifies the process of creating budget entries by using a date range widget instead of separate start and end date fields. This change offers a more intuitive and user-friendly experience for entering budget periods. It’s a small UX improvement designed to make budget creation easier.
Original PR description
We use daterange widget for the date_from and date_to fields of budget.analytic instead of showing 2 separate fields for a better UX. task-6022312
This update simplifies the salary configurator view for users by hiding unnecessary options and buttons when salary information isn't available. It replaces the 'Review Contract' button with a 'Feedback' button, providing a more streamlined experience and reducing potential confusion. This change focuses on usability and clarity.
Original PR description
This update improves the salary configurator view by: - Hiding the Customize Salary text when the option is not available - Hiding the button when the salary summary is not available - Showing a Feedback button instead of Review Contract when there is no salary summary Task-5419466