Monday, December 11, 2023
4 changes
2 changes
Resolved issues and error corrections
Clicking an avatar in the Project Gantt view now opens the chat window as expected. This makes project communication behavior consistent with other Gantt views and removes a small usability issue for users.
Original PR description
Steps to Reproduce: - Open project - Go to projects settings - On Project Stages - Now open gantt view of project Issue: - thumbnail was used for project.project gantt view so due to that when we click on avatar it was not opening chatwindow like other gantt views Fix: - So we have made it consistent like other views task-3504321
Field service customer details now display the partner name and city on the same line. This fixes a small visual issue in shared project views, making address information easier to read and more consistent.
Original PR description
This commit ensures the partner name and partner city are displayed in the same line. It also updates the code according to the changes made in community (see #144492) Task-3383519
2 changes
Resolved issues and error corrections
This fix corrects an issue in the List View Editor where setting a field to read-only would incorrectly trigger automatic saving. The "force_save" feature is now properly limited to form views only, where it's intended to be used. This prevents unintended automatic saves when editing list view configurations.
Original PR description
Before this commit: When editing a list view and setting a field's readonly attribute to true, "force_save" would be set to true while this should only be the case in the form view. After this commit: The "force_save" attribute is now only set in form view. Task: [3284910](https://www.odoo.com/mail/view?model=project.task&res_id=3284910&access_token=1e9b0d2e-0712-472c-8db8-f86e7f6287e9) Forward-Port-Of: odoo/enterprise#46471 Forward-Port-Of: odoo/enterprise#41783
The helpdesk SLA status analysis graph was displaying confusing random numbers next to legend labels (e.g., "SLA Failed /1"). This fix removes those extraneous numbers, making the graph legend clearer and easier to understand for users reviewing SLA performance data.
Original PR description
Before this PR when we see sla status analysis graph view it was showing random numbers shown by legend (SLA Failed /1 ). In this PR we have fixed that issue and made it as SLA Failed. task-3484150 Forward-Port-Of: odoo/enterprise#47057