Daily updates from Odoo
Monday, March 2, 2026
5 changes
3 changes
Features or functions removed from Odoo
This update removes a redundant field from the VoIP call data used in the spreadsheet dashboard. The field was added in a separate module and wasn't actually utilized, so it's been removed to streamline the data and improve efficiency. This change ensures the dashboard only displays relevant information.
Original PR description
`summary` field on `voip.call` is added in `voip_ai` which is not a dependency of `spreadsheet_dashboard_voip`. As the field is not used in the dashboard, this commit removes it. Fixes runbot #240996 Forward-Port-Of: odoo/enterprise#108120
This change removes unnecessary URLs from the JavaScript files used for onboarding tours. These URLs caused unwanted redirects, wasting user time and creating a confusing experience. The URL functionality will now be managed through XML files instead.
Original PR description
The URL key in a tour's JavaScript file implies a redirect to that URL once the browser opens. If this URL is the same as the one used in `start_tour()` (Python), then it serves no purpose. It's even detrimental because it implies a redirect (and therefore a waste of time). The URL key in the JS file is (for now) only used for onboarding tours. This key will be defined later in the .xml file for onboarding tours. That's why we're removing the URL keys from the registries here.
This update removes a redundant route related to signature cancellation. Previously, this route was kept to handle cancellations sent immediately before an upgrade, which caused issues. Now, the route is removed, streamlining the system and preventing potential problems.
Original PR description
odoo/enterprise#66160 removed the sign/sign_cancel route for future emails, but the route itself was not removed to allow users to cancel a signature request whose link was sent right before an upgrade. This commit removes this extra route. task-4016343
1 change
Features or functions removed from Odoo
This update streamlines the operation of certified scales in Point of Sale. The previous system's tare management has been removed, consolidating the tare function into the dedicated scale tare button. This simplifies the user experience and ensures accurate weight measurements for certified transactions.
Original PR description
This PR removes the tare managing from Point Of Sale for the certified scales, leaving its management for the scale tare button. Community PR: odoo/odoo#251237 Task [link](https://www.odoo.com/odoo/project.task/5977538) task-5977538
1 change
Features or functions removed from Odoo
This update removes a now-unnecessary field ('Visible Internally Only') from the customer rating form in the Helpdesk module. Since customer ratings are no longer displayed on the website, this field was causing confusion and clutter. This change improves the user experience and simplifies the Helpdesk interface.
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**