Server IP : 127.0.0.2 / Your IP : 18.216.130.198 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_recruitment/models/ |
Upload File : |
# Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import api, fields, models class HrEmployee(models.Model): _inherit = "hr.employee" newly_hired_employee = fields.Boolean('Newly hired employee', compute='_compute_newly_hired_employee', search='_search_newly_hired_employee') @api.multi def _compute_newly_hired_employee(self): read_group_result = self.env['hr.applicant'].read_group( [('emp_id', 'in', self.ids), ('job_id.state', '=', 'recruit')], ['emp_id'], ['emp_id']) result = dict((data['emp_id'], data['emp_id_count'] > 0) for data in read_group_result) for record in self: record.newly_hired_employee = result.get(record.id, False) def _search_newly_hired_employee(self, operator, value): applicants = self.env['hr.applicant'].search([('job_id.state', '=', 'recruit')]) return [('id', 'in', applicants.ids)] @api.multi def _broadcast_welcome(self): """ Broadcast the welcome message to all users in the employee company. """ self.ensure_one() IrModelData = self.env['ir.model.data'] channel_all_employees = IrModelData.xmlid_to_object('mail.channel_all_employees') template_new_employee = IrModelData.xmlid_to_object('hr_recruitment.email_template_data_applicant_employee') if template_new_employee: MailTemplate = self.env['mail.template'] body_html = MailTemplate.render_template(template_new_employee.body_html, 'hr.employee', self.id) subject = MailTemplate.render_template(template_new_employee.subject, 'hr.employee', self.id) channel_all_employees.message_post( body=body_html, subject=subject, subtype='mail.mt_comment') return True