Daily updates from Odoo
Wednesday, May 8, 2024
4 changes · master
Enhancements to existing features
The appointment resource import field list now shows the resource name field as “Name” instead of “Appointment Resource.” This reduces confusion for users when matching fields during resource imports.
Original PR description
**Specification:** While importing the resources, the drop-down of the fields shows the name field as 'Appointment Resource' which creates confusion for the users. **After this PR:** The label of the field 'name' will be changed from 'Appointment Resource' to 'Name'. Task-3858701
Exports in service-related apps now avoid showing labels for technical fields that are not useful to business users. This makes exported data cleaner and easier to understand when working with documents, projects, helpdesk, field service, and related sales or accounting flows.
Original PR description
Task-3631801
Users' selected time scale is now remembered for timeline-style views such as gantt, grid, cohort, and calendar. This makes returning to these views more convenient because they reopen with the user's last chosen scale for each business model instead of always resetting to the default.
Original PR description
After this commit, the scale for temporal views (gantt, grid, cohort and calendar) is saved in localstorage (resModel dependent) when the user changes the scale value. So when we come back on one of this views, the localstorage scale is set as default scale value instead of scale attribute. If no localstorage value exists, then the scale attribute of the component is taken into account. e.g. => I go to the gantt view for project.tasks for the first time => No localstorage exists => default scale = mode arch attribute = week => I don't change the scale => I change view to list => I come back on gantt view => No localstorage exists => default scale = mode arch attribute = week => I change the scale to "year" value => localstorage is updated ! (gantt-scale-of-project.tasks, "year") => I change view to list => I come back on gantt view => localstorage value exists ! => default scale = localstorage value = year task~3640794
Sales reports can now include and analyze orders by referrer. This helps teams better understand which referrers contribute to sales performance and make more informed commission or partnership decisions.
Original PR description
Before this commit, in the sales report, it is not possible the analyze SO based on the referrer. In this commit, add a referrer in sales reporting to ease analysis. task-3878362