Daily updates from Odoo
Thursday, April 1, 2021
1 change
Resolved issues and error corrections
This fix ensures the customer field is properly set on project tasks when Field Service is installed. It also makes the customer field visible during quick task creation for Field Service projects, helping users capture the right customer information from the start.
Original PR description
Prior to this commit: The partner_id was not set on non FSM projects tasks once the inductry_fsm module was installed. The partner_id field was not displayed in the kanban quick_create view as the is_fsm field was Falsy since the project_id field was not present in the view. Both behaviors have been introduced with odoo/odoo#66589. After this commit: The partner_id is correctly set as the compute is triggered thanks to project_id. The partner_id field is visible in the task quick_create view for FSM projects since the is_fsm task field works as expected as the project_id is present in the view.