Daily updates from Odoo
Wednesday, August 19, 2020
3 changes · master
Resolved issues and error corrections
Spreadsheet pivot tables now avoid repeating the same lookup for subgroup names while data is loading. This reduces unnecessary server calls and should make affected spreadsheets feel more responsive, especially with relational groupings.
Original PR description
If a pivot subgroup is a relational field (e.g. grouped by date:month > salesteam) the display names of the relational records are fetched once per parent group, resulting in many useless RPC calls. This happens because all header evaluations are done asynchronously and they all try to load the display name, even if it's already being fetched (but not resolved yet). Instead of waiting for the label then give it to the cache, the promise is directly given to the cache. That way, the promise can be awaited by others.
The Documents inspector now shows the archive and restore actions as icons only, matching the rest of the inspector controls. This fixes a visual issue on archived files and makes the interface cleaner and more consistent for users.
Original PR description
Before this commit, the inspector have a bug display when we are on an archived file. In this commit, the display on archived file is as expected. task id: 2320257 PR: 12464
The appraisal goals Kanban view now shows the completion ribbon as “Done” instead of “Done!”. This fixes a small wording typo for a cleaner, more consistent user experience.
Original PR description
Change the label of the Goal's Kanban ribbon => https://drive.google.com/file/d/1xFSqaoX_Vfq0gq-naRlTvI3hzNOOKu_9/view?usp=drivesdk LINKS PR: #12477 TASK: 4043