[FIX] Ignore @invisible field spec on group titles, it's bothersome to have group titles don't display

bzr revid: xmo@openerp.com-20111213154722-vrpbl41hjgu66v1u
This commit is contained in:
Xavier Morel 2011-12-13 16:47:22 +01:00
parent b6a0a7b886
commit 51ffcdd7e8
1 changed files with 1 additions and 1 deletions

View File

@ -1162,7 +1162,7 @@ openerp.web.ListView.Groups = openerp.web.Class.extend( /** @lends openerp.web.L
return column.id === group.grouped_on; });
try {
$group_column.html(openerp.web.format_cell(
row_data, group_column, _t("Undefined")));
row_data, group_column, _t("Undefined"), false));
} catch (e) {
$group_column.html(row_data[group_column.id].value);
}