Daily updates from Odoo
Wednesday, May 8, 2024
2 changes · master
Enhancements to existing features
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