-
- Downloads
[FIX] web: reload progressbar values after archiving records
Before this, the progressbar values were not updated (both count and progress) after archiving all the records of a column. Multiple things have been done here to update it. Firstly, a optimization had been done to avoid reloading the progressbar when updating a column ; this optimization was not correct due to this precise use case. This will update the progressbar. Secondly, the `aggregateValues` are reset when putting empty groups back in the datapoint. This attribute is used to compute the counter if a `sum_field` is set on the progressbar widget. It needs to be reset because the loop that computes it won't iterate on empty groups. Eventually, the mockRPC of the progressbar route was not taking the `group_by` argument into account (probably a typo).
Showing
- addons/web/static/src/js/views/basic/basic_model.js 4 additions, 0 deletionsaddons/web/static/src/js/views/basic/basic_model.js
- addons/web/static/src/js/views/kanban/kanban_model.js 2 additions, 6 deletionsaddons/web/static/src/js/views/kanban/kanban_model.js
- addons/web/static/tests/helpers/mock_server.js 1 addition, 1 deletionaddons/web/static/tests/helpers/mock_server.js
- addons/web/static/tests/views/kanban_tests.js 41 additions, 0 deletionsaddons/web/static/tests/views/kanban_tests.js
Loading
Please register or sign in to comment