Browse Source

[FIX] this week's style

pull/480/head
Holger Brunn 8 years ago
parent
commit
0179d6c1c3
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 8
      field_rrule/static/src/js/field_rrule.js

8
field_rrule/static/src/js/field_rrule.js

@ -19,7 +19,7 @@ openerp.field_rrule = function(instance)
var result = this._super(jQuery.extend([], val)); var result = this._super(jQuery.extend([], val));
_.each(this.get('value'), function(rule) _.each(this.get('value'), function(rule)
{ {
rule['__id'] = _.uniqueId();
rule.__id = _.uniqueId();
}); });
this.reinitialize(); this.reinitialize();
return result; return result;
@ -30,7 +30,7 @@ openerp.field_rrule = function(instance)
true, [], this._super.apply(this, arguments)); true, [], this._super.apply(this, arguments));
_.each(result, function(rule) _.each(result, function(rule)
{ {
delete rule['__id'];
delete rule.__id;
}); });
return result; return result;
}, },
@ -102,7 +102,7 @@ openerp.field_rrule = function(instance)
result += odoo_format[i]; result += odoo_format[i];
} }
} }
return result
return result;
}, },
frequency_changed: function(e, noreset) frequency_changed: function(e, noreset)
{ {
@ -225,7 +225,7 @@ openerp.field_rrule = function(instance)
for(var i = 0; i < value.length; i++) for(var i = 0; i < value.length; i++)
{ {
if(value[i]['__id'] == current_id)
if(value[i].__id == current_id)
{ {
value.splice(i, 1); value.splice(i, 1);
i--; i--;

Loading…
Cancel
Save