Monday, March 28, 2022
4 changes · master
Enhancements to existing features
Appointments created from a CRM lead now keep a direct link to that lead, making related meetings easier for sales managers to track. The scheduling message is also clearer when sharing availability from a lead, helping users understand that the resulting appointment will be associated with the opportunity.
Original PR description
# Purpose When an user creates a custom appointment type from the Meeting tab in a lead, it should link the event that will be created later to this particular lead. In this way, a CRM manager can better view its meeting related to lead. # Specifications We add a new field to the appointment type model "lead_id" that will be set based on the default_opportunity_id passed in the context. # Link task-2665863
Manufacturing cost information is now presented more clearly by grouping component costs by product in manufacturing order reports. The product cost analysis option is also hidden when a product has multiple variants, helping avoid confusing or misleading cost views.
Original PR description
Removed cost analysis button on product template when there are multiple variants Grouped component costs by product in the MO report view Task: 267709 Community PR: https://github.com/odoo/odoo/pull/86586
Resolved issues and error corrections
Project users can now use task dependencies in the Gantt view while the first level of rows is collapsed. This prevents an error that previously interrupted planning when that Studio option was enabled.
Original PR description
Steps to reproduce: 1. Ensure you have Studio and Project installed. 2. Go into Project App. 3. In the kanban view, click on a project which have task dependencies enabled. 4. Choose the gantt view. 5. Click on Studio and enable `Collapse first level`. 6. A traceback is triggered. Prior to this commit - An error was raised when using collapsed rows in gantt view with task dependencies. After this commit: - Gantt dependencies can be used together with collapsed rows. opw-2781512 Fix in stable done from 15.0 here: #25501
This update fixes several field service issues that affected daily workflows. Helpdesk users can now be assigned to private-team tickets when appropriate, worksheet choices are limited to field service task templates, and the timesheet start button is visually aligned for a cleaner interface.
Original PR description
* helpdesk, helpdesk_fsm_report, timesheet_grid PURPOSE bug fixes for field services SPECIFICATION In helpdesk, - helpdesk.ticket: it should be possible to assign any helpdesk > user to a ticket of a private team, even if the user is not following the team In helpdesk_fsm_report, - helpdesk.ticket > create task wizard: the 'worksheet template' field should only contain templates from fsm In timesheet_grid, - aligned start button with the left arrow button task-2733415 closes: https://github.com/odoo/enterprise/pull/24301