Daily updates from Odoo
Monday, June 19, 2023
1 change · master
Code cleanup and technical improvements
The Field Service planning view by user has been optimized to load more efficiently. This should reduce waiting time for teams scheduling work and improve day-to-day planning responsiveness.
Original PR description
Field Service > Planning > By User This view was slowed down by: - ProjectTask._group_expand_user_ids that searched task, then mapped them to their users ids > _read_group to directly get the user_ids. - ProjectTask.gantt_unavailability that searched users, then mapped them to their resources, then filtered them on their company, then sorted them > search resources based on user and company, with order arg. task-3293746