[IMP] view_form: suppress wrong console.log

bzr revid: chm@openerp.com-20121024092542-q9aogx9sefb65jr1
This commit is contained in:
Christophe Matthieu 2012-10-24 11:25:42 +02:00
parent 029b52a548
commit fbd53c418e
1 changed files with 0 additions and 6 deletions

View File

@ -3472,7 +3472,6 @@ instance.web.form.FieldOne2Many = instance.web.form.AbstractField.extend({
},
get_value: function() {
var self = this;
console.log("get_value one2many");
if (!this.dataset)
return [];
this.save_any_view();
@ -3488,11 +3487,6 @@ instance.web.form.FieldOne2Many = instance.web.form.AbstractField.extend({
}
return commands.link_to(id);
}));
console.log( val.concat(_.map(
this.dataset.to_delete, function(x) {
return commands['delete'](x.id);})) );
return val.concat(_.map(
this.dataset.to_delete, function(x) {
return commands['delete'](x.id);}));