mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
43 lines
2.0 KiB
Python
43 lines
2.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
from odoo.exceptions import ValidationError
|
|
from odoo import models, fields, api, _
|
|
|
|
|
|
class HrEmployeeInherited(models.Model):
|
|
_inherit = 'hr.employee'
|
|
|
|
resource_calendar_ids = fields.Many2one('resource.calendar', 'Working Hours')
|
|
|
|
|
|
class HrEmployeeShift(models.Model):
|
|
_inherit = 'resource.calendar'
|
|
|
|
def _get_default_attendance_ids(self):
|
|
return [
|
|
(0, 0, {'name': _('Monday Morning'), 'dayofweek': '0', 'hour_from': 8, 'hour_to': 12}),
|
|
(0, 0, {'name': _('Tuesday Morning'), 'dayofweek': '1', 'hour_from': 8, 'hour_to': 12}),
|
|
(0, 0, {'name': _('Wednesday Morning'), 'dayofweek': '2', 'hour_from': 8, 'hour_to': 12}),
|
|
(0, 0, {'name': _('Thursday Morning'), 'dayofweek': '3', 'hour_from': 8, 'hour_to': 12}),
|
|
(0, 0, {'name': _('Friday Morning'), 'dayofweek': '4', 'hour_from': 8, 'hour_to': 12}),
|
|
]
|
|
|
|
color = fields.Integer(string='Color Index', help="Color")
|
|
hr_department = fields.Many2one('hr.department', string="Department", required=True, help="Department")
|
|
sequence = fields.Integer(string="Sequence", required=True, default=1, help="Sequence")
|
|
attendance_ids = fields.One2many(
|
|
'resource.calendar.attendance', 'calendar_id', 'Workingssss Time',
|
|
copy=True, default=_get_default_attendance_ids)
|
|
|
|
@api.constrains('sequence')
|
|
def validate_seq(self):
|
|
if self.hr_department.id:
|
|
record = self.env['resource.calendar'].search([('hr_department', '=', self.hr_department.id),
|
|
('sequence', '=', self.sequence),
|
|
('company_id', '=', self.company_id.id)
|
|
])
|
|
if len(record) > 1:
|
|
raise ValidationError("One record with same sequence is already active."
|
|
"You can't activate more than one record at a time")
|
|
|
|
|