[FIX] Need to Update Pager after delete record.

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

bzr revid: vda@tinyerp.com-20111004071945-2fixgi12ozr6wm6g
This commit is contained in:
Vaibhav (OpenERP) 2011-10-04 12:49:45 +05:30
parent e80894b775
commit be5bef72fa
1 changed files with 1 additions and 0 deletions

View File

@ -493,6 +493,7 @@ openerp.web.ListView = openerp.web.View.extend( /** @lends openerp.web.ListView#
_(ids).each(function (id) {
self.records.remove(self.records.get(id));
});
self.configure_pager(self.dataset);
self.compute_aggregates();
});
},