Browse Source

[FIX] ci problems

pull/480/head
Holger Brunn 9 years ago
parent
commit
0d436e1097
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 1
      field_rrule/__init__.py
  2. 2
      field_rrule/field_rrule.py
  3. 16
      field_rrule/static/src/js/field_rrule.js

1
field_rrule/__init__.py

@ -2,4 +2,3 @@
# © 2016 Therp BV <http://therp.nl> # © 2016 Therp BV <http://therp.nl>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from .field_rrule import FieldRRule from .field_rrule import FieldRRule
from . import res_partner

2
field_rrule/field_rrule.py

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# © 2016 Therp BV <http://therp.nl> # © 2016 Therp BV <http://therp.nl>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from dateutil.rrule import rrule, rruleset, YEARLY
from dateutil.rrule import rrule, rruleset
from openerp import fields, models from openerp import fields, models
_DATETIME_FIELDS = ['_until', '_dtstart'] _DATETIME_FIELDS = ['_until', '_dtstart']
_SCALAR_FIELDS = [ _SCALAR_FIELDS = [

16
field_rrule/static/src/js/field_rrule.js

@ -14,17 +14,17 @@ openerp.field_rrule = function(instance)
'change input:not(.rule_ignore_input)': 'input_changed', 'change input:not(.rule_ignore_input)': 'input_changed',
'change input[name="recurrence_type"]': 'toggle_recurrence_type', 'change input[name="recurrence_type"]': 'toggle_recurrence_type',
}, },
set_value(val)
set_value: function(val)
{ {
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;
}, },
get_value()
get_value: function()
{ {
var result = jQuery.extend( var result = jQuery.extend(
true, [], this._super.apply(this, arguments)); true, [], this._super.apply(this, arguments));
@ -37,7 +37,7 @@ openerp.field_rrule = function(instance)
initialize_content: function() initialize_content: function()
{ {
var self = this; var self = this;
this.$('select[name="freq"]').trigger('change', true)
this.$('select[name="freq"]').trigger('change', true);
this.$('input[name="recurrence_type"]:checked') this.$('input[name="recurrence_type"]:checked')
.trigger('change', true); .trigger('change', true);
this.$('input[type="datetime"]').each(function() this.$('input[type="datetime"]').each(function()
@ -77,14 +77,14 @@ openerp.field_rrule = function(instance)
all_values = this.get('value') || [], all_values = this.get('value') || [],
old_values = jQuery.extend(true, [], all_values); old_values = jQuery.extend(true, [], all_values);
value = _.findWhere(all_values, { value = _.findWhere(all_values, {
__id: String(current_item.data('id')),
'__id': String(current_item.data('id')),
}); });
if(jQuery.isArray(value[input.attr('name')])) if(jQuery.isArray(value[input.attr('name')]))
{ {
var input_value = parseInt(input.val()); var input_value = parseInt(input.val());
value[input.attr('name')] = _.filter( value[input.attr('name')] = _.filter(
value[input.attr('name')], function(x) { value[input.attr('name')], function(x) {
return x != input_value
return x != input_value;
}); });
if(input.is(':checked')) if(input.is(':checked'))
{ {
@ -168,7 +168,7 @@ openerp.field_rrule = function(instance)
remove_rule: function(e) remove_rule: function(e)
{ {
var value = this.get('value') || [], var value = this.get('value') || [],
old_value = jQuery.extend(true, [], value);
old_value = jQuery.extend(true, [], value),
current_item = jQuery(e.currentTarget) current_item = jQuery(e.currentTarget)
.parentsUntil('form', 'table.rule_item'), .parentsUntil('form', 'table.rule_item'),
current_id = String(current_item.data('id')); current_id = String(current_item.data('id'));
@ -258,4 +258,4 @@ openerp.field_rrule = function(instance)
}, },
}); });
instance.web.form.widgets.add('rrule', 'instance.field_rrule.FieldRRule'); instance.web.form.widgets.add('rrule', 'instance.field_rrule.FieldRRule');
}
};
Loading…
Cancel
Save