[FIX] reversal of aggregate function and title when extracted Column objects

bzr revid: xmo@openerp.com-20120904110422-zgk7icj5lgygnvpo
This commit is contained in:
Xavier Morel 2012-09-04 13:04:22 +02:00
parent af953dab46
commit 58a5e1c013
1 changed files with 1 additions and 1 deletions

View File

@ -1995,7 +1995,7 @@ instance.web.list.Column = instance.web.Class.extend({
if (!(aggregation_func in this)) {
return {};
}
var C = function (label, fn) {
var C = function (fn, label) {
this['function'] = fn;
this.label = label;
};