|
@ -8,17 +8,20 @@ from openerp import fields, models, api |
|
|
|
|
|
|
|
|
PARAMS = [ |
|
|
PARAMS = [ |
|
|
('irregular_shift_limit', 'beesdoo_website_shift.irregular_shift_limit'), |
|
|
('irregular_shift_limit', 'beesdoo_website_shift.irregular_shift_limit'), |
|
|
('highlight_rule', 'beesdoo_website_shift.highlight_rule'), |
|
|
|
|
|
|
|
|
('highlight_rule_pc', 'beesdoo_website_shift.highlight_rule_pc'), |
|
|
('hide_rule', 'beesdoo_website_shift.hide_rule'), |
|
|
('hide_rule', 'beesdoo_website_shift.hide_rule'), |
|
|
('irregular_enable_sign_up', 'beesdoo_website_shift.irregular_enable_sign_up'), |
|
|
|
|
|
('irregular_past_shift_limit', 'beesdoo_website_shift.irregular_past_shift_limit'), |
|
|
|
|
|
('regular_past_shift_limit', 'beesdoo_website_shift.regular_past_shift_limit'), |
|
|
|
|
|
('regular_next_shift_limit', 'beesdoo_website_shift.regular_next_shift_limit'), |
|
|
|
|
|
|
|
|
('irregular_enable_sign_up', |
|
|
|
|
|
'beesdoo_website_shift.irregular_enable_sign_up'), |
|
|
|
|
|
('irregular_past_shift_limit', |
|
|
|
|
|
'beesdoo_website_shift.irregular_past_shift_limit'), |
|
|
|
|
|
('regular_past_shift_limit' |
|
|
|
|
|
, 'beesdoo_website_shift.regular_past_shift_limit'), |
|
|
|
|
|
('regular_next_shift_limit', |
|
|
|
|
|
'beesdoo_website_shift.regular_next_shift_limit'), |
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class WebsiteShiftConfigSettings(models.TransientModel): |
|
|
class WebsiteShiftConfigSettings(models.TransientModel): |
|
|
|
|
|
|
|
|
_name = 'beesdoo.website.shift.config.settings' |
|
|
_name = 'beesdoo.website.shift.config.settings' |
|
|
_inherit = 'res.config.settings' |
|
|
_inherit = 'res.config.settings' |
|
|
|
|
|
|
|
@ -26,11 +29,13 @@ class WebsiteShiftConfigSettings(models.TransientModel): |
|
|
irregular_shift_limit = fields.Integer( |
|
|
irregular_shift_limit = fields.Integer( |
|
|
help="Maximum shift that will be shown" |
|
|
help="Maximum shift that will be shown" |
|
|
) |
|
|
) |
|
|
highlight_rule = fields.Integer( |
|
|
|
|
|
help="Treshold of available space in a shift that trigger the highlight of the shift" |
|
|
|
|
|
|
|
|
highlight_rule_pc = fields.Integer( |
|
|
|
|
|
help="Treshold (in %) of available space in a shift that trigger the " |
|
|
|
|
|
"highlight of the shift" |
|
|
) |
|
|
) |
|
|
hide_rule = fields.Integer( |
|
|
hide_rule = fields.Integer( |
|
|
help="Treshold ((available space)/(max space)) in percentage of available space under wich the shift is hidden" |
|
|
|
|
|
|
|
|
help="Treshold ((available space)/(max space)) in percentage of " |
|
|
|
|
|
"available space under wich the shift is hidden" |
|
|
) |
|
|
) |
|
|
irregular_enable_sign_up = fields.Boolean( |
|
|
irregular_enable_sign_up = fields.Boolean( |
|
|
help="Enable shift sign up for irregular worker" |
|
|
help="Enable shift sign up for irregular worker" |
|
@ -58,46 +63,59 @@ class WebsiteShiftConfigSettings(models.TransientModel): |
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_irregular_shift_limit(self): |
|
|
def get_default_irregular_shift_limit(self): |
|
|
return { |
|
|
return { |
|
|
'irregular_shift_limit': int(self.env['ir.config_parameter'].get_param( |
|
|
|
|
|
'beesdoo_website_shift.irregular_shift_limit')) |
|
|
|
|
|
|
|
|
'irregular_shift_limit': int( |
|
|
|
|
|
self.env['ir.config_parameter'] |
|
|
|
|
|
.get_param("beesdoo_website_shift.irregular_shift_limit") |
|
|
|
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_highlight_rule(self): |
|
|
|
|
|
|
|
|
def get_default_highlight_rule_pc(self): |
|
|
return { |
|
|
return { |
|
|
'highlight_rule': int(self.env['ir.config_parameter'].get_param('beesdoo_website_shift.highlight_rule')) |
|
|
|
|
|
|
|
|
'highlight_rule_pc': int( |
|
|
|
|
|
self.env['ir.config_parameter'] |
|
|
|
|
|
.get_param("beesdoo_website_shift.highlight_rule_pc") |
|
|
|
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_hide_rule(self): |
|
|
def get_default_hide_rule(self): |
|
|
return { |
|
|
return { |
|
|
'hide_rule': int(self.env['ir.config_parameter'].get_param('beesdoo_website_shift.hide_rule')) |
|
|
|
|
|
|
|
|
'hide_rule': int(self.env['ir.config_parameter'].get_param( |
|
|
|
|
|
'beesdoo_website_shift.hide_rule')) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_irregular_shift_sign_up(self): |
|
|
def get_default_irregular_shift_sign_up(self): |
|
|
return { |
|
|
return { |
|
|
'irregular_enable_sign_up': literal_eval(self.env['ir.config_parameter'].get_param( |
|
|
|
|
|
|
|
|
'irregular_enable_sign_up': |
|
|
|
|
|
literal_eval(self.env['ir.config_parameter'].get_param( |
|
|
'beesdoo_website_shift.irregular_enable_sign_up')) |
|
|
'beesdoo_website_shift.irregular_enable_sign_up')) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_irregular_past_shift_limit(self): |
|
|
def get_default_irregular_past_shift_limit(self): |
|
|
return { |
|
|
return { |
|
|
'irregular_past_shift_limit': int(self.env['ir.config_parameter'].get_param( |
|
|
|
|
|
'beesdoo_website_shift.irregular_past_shift_limit')) |
|
|
|
|
|
|
|
|
'irregular_past_shift_limit': int( |
|
|
|
|
|
self.env['ir.config_parameter'] |
|
|
|
|
|
.get_param("beesdoo_website_shift.irregular_past_shift_limit") |
|
|
|
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_regular_past_shift_limit(self): |
|
|
def get_default_regular_past_shift_limit(self): |
|
|
return { |
|
|
return { |
|
|
'regular_past_shift_limit': int(self.env['ir.config_parameter'].get_param( |
|
|
|
|
|
'beesdoo_website_shift.regular_past_shift_limit')) |
|
|
|
|
|
|
|
|
'regular_past_shift_limit': int( |
|
|
|
|
|
self.env['ir.config_parameter'] |
|
|
|
|
|
.get_param('beesdoo_website_shift.regular_past_shift_limit') |
|
|
|
|
|
) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@api.multi |
|
|
@api.multi |
|
|
def get_default_regular_next_shift_limit(self): |
|
|
def get_default_regular_next_shift_limit(self): |
|
|
return { |
|
|
return { |
|
|
'regular_next_shift_limit': int(self.env['ir.config_parameter'].get_param( |
|
|
|
|
|
'beesdoo_website_shift.regular_next_shift_limit')) |
|
|
|
|
|
|
|
|
'regular_next_shift_limit': int( |
|
|
|
|
|
self.env['ir.config_parameter'] |
|
|
|
|
|
.get_param('beesdoo_website_shift.regular_next_shift_limit') |
|
|
|
|
|
) |
|
|
} |
|
|
} |