1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/appointment_hr_recruitment/models/calendar_event.py
2024-12-10 09:04:09 +07:00

10 lines
329 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields, api, _
class CalendarEventRecruitment(models.Model):
_inherit = 'calendar.event'
applicant_id = fields.Many2one(related="appointment_invite_id.applicant_id", readonly=False, store=True)