2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class CalendarEvent(models.Model):
|
|
|
|
""" Model for Calendar Event """
|
|
|
|
_inherit = 'calendar.event'
|
|
|
|
|
|
|
|
@api.model
|
|
|
|
def default_get(self, fields):
|
|
|
|
if self.env.context.get('default_applicant_id'):
|
|
|
|
self = self.with_context(
|
|
|
|
default_res_model_id=self.env.ref('hr_recruitment.model_hr_applicant').id,
|
|
|
|
default_res_id=self.env.context['default_applicant_id']
|
|
|
|
)
|
|
|
|
|
|
|
|
defaults = super(CalendarEvent, self).default_get(fields)
|
|
|
|
|
|
|
|
# sync res_model / res_id to opportunity id (aka creating meeting from lead chatter)
|
|
|
|
if 'applicant_id' not in defaults and defaults.get('res_id') and (defaults.get('res_model') or defaults.get('res_model_id')):
|
|
|
|
if (defaults.get('res_model') and defaults['res_model'] == 'hr.applicant') or (defaults.get('res_model_id') and self.env['ir.model'].sudo().browse(defaults['res_model_id']).model == 'hr.applicant'):
|
|
|
|
defaults['applicant_id'] = defaults['res_id']
|
|
|
|
|
|
|
|
return defaults
|
|
|
|
|
|
|
|
def _compute_is_highlighted(self):
|
|
|
|
super(CalendarEvent, self)._compute_is_highlighted()
|
|
|
|
applicant_id = self.env.context.get('active_id')
|
|
|
|
if self.env.context.get('active_model') == 'hr.applicant' and applicant_id:
|
|
|
|
for event in self:
|
|
|
|
if event.applicant_id.id == applicant_id:
|
|
|
|
event.is_highlighted = True
|
|
|
|
|
|
|
|
applicant_id = fields.Many2one('hr.applicant', string="Applicant")
|