Daily updates from Odoo
Wednesday, November 6, 2024
7 changes
4 changes
Enhancements to existing features
The Helpdesk ticket card menu no longer shows an Edit option. This reduces menu clutter because users can already open and update a ticket by clicking the card itself.
Original PR description
Before this commit, the `Edit` button is displayed in the menu of the kanban card of helpdesk ticket. This button is not really useful since the user can easily go to the form view of ticket by clicking on the kanban card. This commit removes `Edit` button in the kanban card menu of helpdesk ticket since that button is not really useful. task-4262236
The project list now shows the regular project name when there is only one company, or when Field Service is not installed. This keeps the list easier to sort while still showing company details when they are useful in multi-company Field Service setups.
Original PR description
In the project list view, instead of displaying the name, we use the display_name so that we can show the company name for fsm projects. However, since it is a computed field, it has the drawback of not being sortable. To alleviate this, this PR will use the name instead if there is only one company in the context or if Field Service is not installed. Task-3942760
WhatsApp message templates with the same priority are now shown with the most recently updated templates first. This makes it easier for users to find and work with the templates that were changed most recently.
Original PR description
The templates who has the same sequence number should be sorted based on their most recent update date. task-3794427
The subscription stock forecast report now handles warehouse information in one consistent way, whether there is one warehouse or several. This simplifies the underlying logic and helps keep future maintenance easier without changing the user workflow.
Original PR description
In this PR ======================== 1. For the forecast report, always pass warehouses as a list, regardless of whether it's one or more. This reduces unnecessary code and simplifies the logic. The main goal is to clean this PR: https://github.com/odoo/enterprise/pull/69760 TaskId :4214109
3 changes
Enhancements to existing features
The website editor now keeps image tooltips visible for as long as a visitor or editor keeps the cursor over the image. This makes image-related guidance easier to read and improves the editing experience without changing core business workflows.
Original PR description
This commit enhances tooltip behavior. Previously, the tooltip was displayed for only a brief period. Now, it remains visible as long as the cursor hovers over the image. task-4285601 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Document workflow rules are being adjusted so they can be migrated more easily, especially when documents may be linked to different business records chosen at the time of use. Sign document template creation is also made more flexible, reducing migration friction for existing workflow configurations.
Original PR description
Workflow rule can be configured to link a document to any model (the user has to choose the model when executing the action). In order to migrate such workflow rule, we make the parameter model of the method action_link_to_record optional. Also to ease the conversion of workflow rule into server action, we make the folder_id optional on the method document_sign_create_sign_template_x of documents_sign. Task-4283330
This update prepares document workflow rules for migration by allowing some linking and signing setup details to be chosen later rather than required upfront. It helps existing document automation rules convert more reliably into the newer server action approach with minimal user-facing disruption.
Original PR description
Workflow rule can be configured to link a document to any model (the user has to choose the model when executing the action). In order to migrate such workflow rule, we make the parameter model of the method action_link_to_record optional. Also to ease the conversion of workflow rule into server action, we make the folder_id optional on the method document_sign_create_sign_template_x of documents_sign. Task-4283330