Merge pull request #330 from hbrunn/8.0-web_widget_one2many-fix_create_defaults

[FIX] pass current context to create popup
pull/332/head
Pedro M. Baeza 2016-03-22 10:18:04 +01:00
commit 8c167a5535
1 changed files with 2 additions and 2 deletions

View File

@ -22,10 +22,10 @@ openerp.web_widget_one2many_tags = function(instance)
result.ext.arrow = {
onArrowClick: function(e)
{
var context = {},
var context = self.build_context(),
key = _.str.sprintf(
'default_%s', self.field.relation_field)
context[key] = self.field_manager.datarecord.id;
context.add({[key]: self.field_manager.datarecord.id});
self._search_create_popup('form', undefined, context);
},
}