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.
 
 
 
 
 

123 lines
5.8 KiB

# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
# Author: Jumana Haseen @cybrosys(odoo@cybrosys.com)
#
# You can modify it under the terms of the GNU AFFERO
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
#
# 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 (AGPL v3) for more details.
#
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
# (AGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from odoo import api, fields, models, _
class Orientation(models.Model):
"""This class creates a model 'employee.orientation' and adds fields,and
also inherits 'mail.thread'"""
_name = 'employee.orientation'
_description = "Employee Orientation"
_inherit = 'mail.thread'
name = fields.Char(string='Employee Orientation', readonly=True,
default=lambda self: _('New'),
help="Sequence for employee orientation.")
employee_id = fields.Many2one('hr.employee', string='Employee',
required=True,
help="Name of the employee.")
department_id = fields.Many2one('hr.department', string='Department',
related='employee_id.department_id',
required=True,
help="Name of the department.")
date = fields.Datetime(string="Date", help="Current date for employee "
"orientation.")
responsible_user_id = fields.Many2one('res.users',
string='Responsible User',
help="Give the responsible user.")
employee_company_id = fields.Many2one('res.company', string='Company',
required=True,
default=lambda
self: self.env.user.company_id,
help="Mention the company.")
parent_id = fields.Many2one('hr.employee', string='Manager',
related='employee_id.parent_id',
help="Related manager.")
job_id = fields.Many2one('hr.job', string='Job Title',
related='employee_id.job_id',
domain="[('department_id', '=', department_id)]",
help="Mention the job title.")
orientation_id = fields.Many2one('orientation.checklist',
string='Orientation Checklist',
domain="[('checklist_department_id','=',"
" department_id)]",
required=True,
help="Mention the Orientation Checklist.")
note = fields.Text('Description', help="Give the description if any.")
orientation_request_ids = fields.One2many('orientation.request',
'request_orientation_id',
string='Orientation Request',
help="Orientation requests "
"of the employee.")
state = fields.Selection([
('draft', 'Draft'),
('confirm', 'Confirmed'),
('cancel', 'Canceled'),
('complete', 'Completed'),
], string='Status', readonly=True, copy=False, index=True,
default='draft',
help="Status of the employee orientation.")
def action_confirm_orientation(self):
"""Function execute on confirming orientation, state changes to
confirm"""
self.write({'state': 'confirm'})
for values in self.orientation_id.checklist_line_ids:
self.env['orientation.request'].create({
'request_name': values.line_name,
'request_orientation_id': self.id,
'partner_id': values.responsible_user_id.id,
'request_date': self.date,
'employee_id': self.employee_id.id,
})
def action_cancel_orientation(self):
"""Function on cancel orientation button,state changes to cancel"""
for request in self.orientation_request_ids:
request.state = 'cancel'
self.write({'state': 'cancel'})
def action_complete_orientation(self):
"""Function on complete orientation button,state changes to complete"""
force_complete = False
for request in self.orientation_request_ids:
if request.state == 'new':
force_complete = True
if force_complete:
return {
'name': 'Complete Orientation',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'orientation.force.complete',
'type': 'ir.actions.act_window',
'context': {'default_orientation_id': self.id},
'target': 'new',
}
self.write({'state': 'complete'})
@api.model
def create(self, vals):
"""Function to create sequence for orientation"""
vals['name'] = self.env['ir.sequence'].next_by_code(
'employee.orientation')
result = super(Orientation, self).create(vals)
return result