[FIX] Customer kanban view does not display tags on results coming from "show more"

lp bug: https://launchpad.net/bugs/1115066 fixed

bzr revid: fme@openerp.com-20130213094743-6rjzgp9y46j9cewh
This commit is contained in:
Fabien Meghazi 2013-02-13 10:47:43 +01:00
parent ead19a73b2
commit ba591e2632
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,7 @@ instance.web_kanban.KanbanView = instance.web.View.extend({
this.has_been_loaded = $.Deferred();
this.search_domain = this.search_context = this.search_group_by = null;
this.currently_dragging = {};
this.limit = options.limit || 40;
this.limit = options.limit || 3;
this.add_group_mutex = new $.Mutex();
},
view_loading: function(r) {
@ -636,6 +636,7 @@ instance.web_kanban.KanbanGroup = instance.web.Widget.extend({
self.view.dataset.ids = ids.concat(self.dataset.ids);
self.do_add_records(records);
self.compute_cards_auto_height();
self.view.postprocess_m2m_tags();
return records;
});
},