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.
101 lines
5.0 KiB
101 lines
5.0 KiB
# -*- coding: utf-8 -*-
|
|
###################################################################################
|
|
# A part of OpenHrms Project <https://www.openhrms.com>
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
# Copyright (C) 2018-TODAY Cybrosys Technologies (<https://www.cybrosys.com>).
|
|
# Author: Saritha Sahadevan (<https://www.cybrosys.com>)
|
|
#
|
|
# This program is free software: you can modify
|
|
# it under the terms of the GNU Affero General Public License (AGPL) as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
#
|
|
###################################################################################
|
|
from odoo import models, fields
|
|
|
|
|
|
class HrGenerateShift(models.Model):
|
|
_name = 'hr.shift.generate'
|
|
|
|
hr_department = fields.Many2one('hr.department', string="Department")
|
|
start_date = fields.Date(string="Start Date", required=True)
|
|
end_date = fields.Date(string="End Date", required=True)
|
|
|
|
def action_schedule_shift(self):
|
|
"""Create mass schedule for all departments based on the shift scheduled in corresponding employee's contract"""
|
|
|
|
if self.hr_department:
|
|
for contract in self.env['hr.contract'].search([('department_id', '=', self.hr_department.id)]):
|
|
if contract.shift_schedule:
|
|
for shift_val in contract.shift_schedule:
|
|
shift = shift_val.hr_shift
|
|
start_date = self.start_date
|
|
end_date = self.end_date
|
|
shift_obj = self.env['resource.calendar'].search([('hr_department', '=', self.hr_department.id),
|
|
('name', '=', shift.name)], limit=1)
|
|
sequence = shift_obj.sequence
|
|
seq_no = sequence + 1
|
|
new_shift = self.env['resource.calendar'].search([
|
|
('sequence', '=', seq_no), ('hr_department', '=', self.hr_department.id)], limit=1)
|
|
if new_shift:
|
|
shift_ids = [(0, 0, {
|
|
'hr_shift': new_shift.id,
|
|
'start_date': start_date,
|
|
'end_date': end_date
|
|
})]
|
|
contract.shift_schedule = shift_ids
|
|
else:
|
|
seq_no = 1
|
|
new_shift = self.env['resource.calendar'].search([
|
|
('sequence', '=', seq_no), ('hr_department', '=', self.hr_department.id)], limit=1)
|
|
if new_shift:
|
|
shift_ids = [(0, 0, {
|
|
'hr_shift': new_shift.id,
|
|
'start_date': start_date,
|
|
'end_date': end_date
|
|
})]
|
|
contract.shift_schedule = shift_ids
|
|
else:
|
|
for contract in self.env['hr.contract'].search([]):
|
|
if contract.shift_schedule and contract.department_id:
|
|
for shift_val in contract.shift_schedule:
|
|
shift = shift_val.hr_shift
|
|
start_date = self.start_date
|
|
end_date = self.end_date
|
|
shift_obj = self.env['resource.calendar'].search([('hr_department', '=', contract.department_id.id),
|
|
('name', '=', shift.name)], limit=1)
|
|
sequence = shift_obj.sequence
|
|
seq_no = sequence + 1
|
|
new_shift = self.env['resource.calendar'].search([
|
|
('sequence', '=', seq_no), ('hr_department', '=', contract.department_id.id)], limit=1)
|
|
if new_shift:
|
|
shift_ids = [(0, 0, {
|
|
'hr_shift': new_shift.id,
|
|
'start_date': start_date,
|
|
'end_date': end_date
|
|
})]
|
|
contract.shift_schedule = shift_ids
|
|
else:
|
|
seq_no = 1
|
|
new_shift = self.env['resource.calendar'].search([
|
|
('sequence', '=', seq_no), ('hr_department', '=', contract.department_id.id)], limit=1)
|
|
shift_ids = [(0, 0, {
|
|
'hr_shift': new_shift.id,
|
|
'start_date': start_date,
|
|
'end_date': end_date
|
|
})]
|
|
contract.shift_schedule = shift_ids
|
|
|
|
|
|
|
|
|
|
|
|
|