Server IP : 127.0.0.2 / Your IP : 3.144.6.159 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/hr_contract/models/ |
Upload File : |
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, fields, models, _ from odoo.exceptions import ValidationError class Employee(models.Model): _inherit = "hr.employee" manager = fields.Boolean(string='Is a Manager') medic_exam = fields.Date(string='Medical Examination Date', groups='hr.group_hr_user') place_of_birth = fields.Char('Place of Birth', groups='hr.group_hr_user') children = fields.Integer(string='Number of Children', groups='hr.group_hr_user') vehicle = fields.Char(string='Company Vehicle', groups='hr.group_hr_user') vehicle_distance = fields.Integer(string='Home-Work Dist.', help="In kilometers", groups='hr.group_hr_user') contract_ids = fields.One2many('hr.contract', 'employee_id', string='Contracts') contract_id = fields.Many2one('hr.contract', compute='_compute_contract_id', string='Current Contract', help='Latest contract of the employee') contracts_count = fields.Integer(compute='_compute_contracts_count', string='Contracts') def _compute_contract_id(self): """ get the lastest contract """ Contract = self.env['hr.contract'] for employee in self: employee.contract_id = Contract.search([('employee_id', '=', employee.id)], order='date_start desc', limit=1) def _compute_contracts_count(self): # read_group as sudo, since contract count is displayed on form view contract_data = self.env['hr.contract'].sudo().read_group([('employee_id', 'in', self.ids)], ['employee_id'], ['employee_id']) result = dict((data['employee_id'][0], data['employee_id_count']) for data in contract_data) for employee in self: employee.contracts_count = result.get(employee.id, 0) class ContractType(models.Model): _name = 'hr.contract.type' _description = 'Contract Type' _order = 'sequence, id' name = fields.Char(string='Contract Type', required=True) sequence = fields.Integer(help="Gives the sequence when displaying a list of Contract.", default=10) class Contract(models.Model): _name = 'hr.contract' _description = 'Contract' _inherit = ['mail.thread', 'ir.needaction_mixin'] name = fields.Char('Contract Reference', required=True) employee_id = fields.Many2one('hr.employee', string='Employee', required=True) department_id = fields.Many2one('hr.department', string="Department") type_id = fields.Many2one('hr.contract.type', string="Contract Type", required=True, default=lambda self: self.env['hr.contract.type'].search([], limit=1)) job_id = fields.Many2one('hr.job', string='Job Title') date_start = fields.Date('Start Date', required=True, default=fields.Date.today) date_end = fields.Date('End Date') trial_date_start = fields.Date('Trial Start Date') trial_date_end = fields.Date('Trial End Date') working_hours = fields.Many2one('resource.calendar', string='Working Schedule') wage = fields.Float('Wage', digits=(16, 2), required=True, help="Basic Salary of the employee") advantages = fields.Text('Advantages') notes = fields.Text('Notes') permit_no = fields.Char('Work Permit No') visa_no = fields.Char('Visa No') visa_expire = fields.Date('Visa Expire Date') state = fields.Selection([ ('draft', 'New'), ('open', 'Running'), ('pending', 'To Renew'), ('close', 'Expired'), ], string='Status', track_visibility='onchange', help='Status of the contract', default='draft') @api.onchange('employee_id') def _onchange_employee_id(self): if self.employee_id: self.job_id = self.employee_id.job_id self.department_id = self.employee_id.department_id @api.constrains('date_start', 'date_end') def _check_dates(self): if self.filtered(lambda c: c.date_end and c.date_start > c.date_end): raise ValidationError(_('Contract start date must be less than contract end date.')) @api.multi def set_as_pending(self): return self.write({'state': 'pending'}) @api.multi def set_as_close(self): return self.write({'state': 'close'}) @api.multi def _track_subtype(self, init_values): self.ensure_one() if 'state' in init_values and self.state == 'pending': return 'hr_contract.mt_contract_pending' elif 'state' in init_values and self.state == 'close': return 'hr_contract.mt_contract_close' return super(Contract, self)._track_subtype(init_values)