You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
4.3 KiB

7 years ago
7 years ago
  1. # -*- coding: utf-8 -*-
  2. from openerp import models, fields, api, _
  3. from openerp.exceptions import UserError
  4. class StatusActionMixin(models.AbstractModel):
  5. _name = "beesdoo.shift.action_mixin"
  6. cooperator_id = fields.Many2one('res.partner', default=lambda self: self.env['res.partner'].browse(self._context.get('active_id')), required=True)
  7. def _check(self, group='beesdoo_shift.group_shift_management'):
  8. self.ensure_one()
  9. if not self.env.user.has_group(group):
  10. raise UserError(_("You don't have the required access for this operation."))
  11. if self.cooperator_id == self.env.user.partner_id and not self.env.user.has_group('beesdoo_shift.group_cooperative_admin'):
  12. raise UserError(_("You cannot perform this operation on yourself"))
  13. return self.with_context(real_uid=self._uid)
  14. class Subscribe(models.TransientModel):
  15. _name = 'beesdoo.shift.subscribe'
  16. _inherit = 'beesdoo.shift.action_mixin'
  17. def _get_date(self):
  18. date = self.env['res.partner'].browse(self._context.get('active_id')).info_session_date
  19. if not date:
  20. return fields.Date.today()
  21. else:
  22. return date
  23. def _get_super(self):
  24. return self.env['res.partner'].browse(self._context.get('active_id')).super
  25. def _get_mode(self):
  26. return self.env['res.partner'].browse(self._context.get('active_id')).working_mode
  27. def _get_reset_counter_default(self):
  28. return self.env['res.partner'].browse(self._context.get('active_id')).state == 'unsubscribed'
  29. info_session = fields.Boolean(string="Followed an information session", default=True)
  30. info_session_date = fields.Date(string="Date of information session", default=_get_date)
  31. super = fields.Boolean(string="Super Cooperator", default=_get_super)
  32. working_mode = fields.Selection(
  33. [
  34. ('regular', 'Regular worker'),
  35. ('irregular', 'Irregular worker'),
  36. ('exempt', 'Exempted'),
  37. ], default=_get_mode
  38. )
  39. exempt_reason_id = fields.Many2one('cooperative.exempt.reason', 'Exempt Reason')
  40. shift_id = fields.Many2one('beesdoo.shift.template')
  41. reset_counter = fields.Boolean(default=_get_reset_counter_default)
  42. reset_compensation_counter = fields.Boolean(default=False)
  43. unsubscribed = fields.Boolean(default=False, string="Are you sure to unsubscribe this cooperator")
  44. @api.multi
  45. def unsubscribe(self):
  46. self = self._check()
  47. if not self.unsubscribed:
  48. return
  49. status_id = self.env['cooperative.status'].search([('cooperator_id', '=', self.cooperator_id.id)])
  50. data = {
  51. 'unsubscribed': True,
  52. 'cooperator_id': self.cooperator_id.id,
  53. }
  54. if status_id:
  55. status_id.sudo().write(data)
  56. else:
  57. self.env['cooperative.status'].sudo().create(data)
  58. @api.multi
  59. def subscribe(self):
  60. self = self._check()
  61. if self.shift_id and self.shift_id.remaining_worker <= 0:
  62. raise UserError(_('There is no remaining space for this shift'))
  63. if self.shift_id:
  64. #Remove existing shift then subscribe to the new shift
  65. self.cooperator_id.sudo().write({'subscribed_shift_ids' : [(6,0, [self.shift_id.id])]})
  66. if self.working_mode != 'regular':
  67. #Remove existing shift then subscribe to the new shift
  68. self.cooperator_id.sudo().write({'subscribed_shift_ids' : [(5,)]})
  69. data = {
  70. 'info_session' : self.info_session,
  71. 'info_session_date': self.info_session_date,
  72. 'working_mode' : self.working_mode,
  73. 'exempt_reason_id' : self.exempt_reason_id.id,
  74. 'super' : self.super,
  75. 'cooperator_id': self.cooperator_id.id,
  76. 'unsubscribed': False
  77. }
  78. if self.reset_counter:
  79. data['sr'] = 0
  80. data['extension_start_time'] = False
  81. data['alert_start_time'] = False
  82. data['time_extension'] = 0
  83. if self.reset_compensation_counter:
  84. data['sc'] = 0
  85. status_id = self.env['cooperative.status'].search([('cooperator_id', '=', self.cooperator_id.id)])
  86. if status_id:
  87. status_id.sudo().write(data)
  88. else:
  89. self.env['cooperative.status'].sudo().create(data)