summaryrefslogtreecommitdiff
path: root/addons/hr_recruitment/models/calendar.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/hr_recruitment/models/calendar.py')
-rw-r--r--addons/hr_recruitment/models/calendar.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/addons/hr_recruitment/models/calendar.py b/addons/hr_recruitment/models/calendar.py
new file mode 100644
index 00000000..d97ee566
--- /dev/null
+++ b/addons/hr_recruitment/models/calendar.py
@@ -0,0 +1,39 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import api, fields, models
+
+
+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='hr.applicant', #res_model seems to be lost without this
+ 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:
+ res_model = defaults.get('res_model', False) or self.env.context.get('default_res_model')
+ res_model_id = defaults.get('res_model_id', False) or self.env.context.get('default_res_model_id')
+ if (res_model and res_model == 'hr.applicant') or (res_model_id and self.env['ir.model'].sudo().browse(res_model_id).model == 'hr.applicant'):
+ defaults['applicant_id'] = defaults.get('res_id', False) or self.env.context.get('default_res_id', False)
+
+ 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", index=True, ondelete='set null')