Merge pull request #367 from hbrunn/8.0-web_widget_one2many_tags-eval_column_context

[FIX] eval column's context
pull/488/head
Pedro M. Baeza 2016-08-18 18:44:19 +02:00 committed by GitHub
commit 9e95460a03
1 changed files with 3 additions and 1 deletions

View File

@ -178,7 +178,9 @@ openerp.web_widget_one2many_tags = function(instance)
set: function() {}, set: function() {},
build_context: function() build_context: function()
{ {
return column.context; return new instance.web.CompoundContext(
column.context
);
}, },
}, },
value = record.get(column.id); value = record.get(column.id);