Hello,
We're looking to improve the performance of the crm.
With approx 10000 cards, it became really slow. There is an option to show fewer cards, but changing this does not seem to affect performance. The following paths were changed to achieve this:
odoo12/odoo-12.0/addons/web/static/src/js/views/basic/basic_view.js
this.loadParams.limit = parseInt(this.arch.attrs.limit, 10) || params.limit;
odoo12/odoo-12.0/addons/web/static/src/js/views/kanban/kanban_view.js
this.loadParams.limit = this.loadParams.limit || 40;
It seems like it is just hiding cards but it still loads everything?
Anyone a better suggestion?
Thx!