Saturday, May 9, 2026
4 changes · master
New functionality added to Odoo
This update adds the ability to export General Ledger reports as CSV files. This allows users to easily download and analyze their financial data for reporting and record-keeping purposes. This enhancement improves data accessibility and streamlines financial reporting workflows.
Original PR description
task-5734354 Forward-Port-Of: odoo/enterprise#116730 Forward-Port-Of: odoo/enterprise#107638
Resolved issues and error corrections
This update resolves intermittent errors occurring during tests for the planning field service's geolocation functionality. These errors were causing unreliable test results. The fix ensures the geolocation tests are now consistently reliable, improving the stability of the planning field service.
Original PR description
This commits aims to resolve the undeterministic failures of the planning field service geolocation tests. Forward-Port-Of: odoo/enterprise#116176
This update resolves a bug where users with limited permissions were encountering errors when modifying subscription timesheet tasks. The fix involves simplifying data fetching to prevent privilege-related access issues, ensuring smoother operation for users with restricted access.
Original PR description
The change in e75bc6a1fac056d72fe9e73513635f9e0ba7db22 may cause some access errors when the user don't have the proper privileges. STR: 1. Having a user (demo) with minimal permissions: sales own documents, timesheets and project user 2. Having a sales order for customer that demo user can read with services in it. 3. Having that customer a task with a sale that the demo user can't read. 4. When the user tries to change the line to one that he can actually read, an error raises. The display_name function tries to fetch data from the lines related order. Let's just sudo that fetch to avoid these kind of issues. A demo video: https://www.loom.com/share/ddd02d72bcea4652b79549aba47d5334 opw-5969767 cc @moduon MT-14483 Forward-Port-Of: odoo/enterprise#113996
This update fixes a minor usability issue in the Helpdesk module. Previously, users were prompted to archive or clear stages before deleting them, but lacked keyboard shortcuts for navigation. Now, keyboard shortcuts are correctly assigned to the confirmation and discard buttons in the stage deletion wizard, streamlining the process.
Original PR description
Before this commit, when the user tries to delete a kanban column in ticket kanban view when the group by is stage_id. A pop-up appears when there is at least one ticket in that stage to notify the user it would be better to archive the stage or remove all tickets from that stage before deleting it. The Confirm and Discard buttons of that wizard does not have keyboard shortcut as the other discard button in the other views/wizards. This commit makes sure the keyboard shortcut is correctly assigned to those buttons. task-4885677 Forward-Port-Of: odoo/enterprise#116297 Forward-Port-Of: odoo/enterprise#89141