11 lines
359 B
Python
11 lines
359 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class HrApplicant(models.Model):
|
||
|
_inherit = 'hr.applicant'
|
||
|
|
||
|
candidate_skill_ids = fields.One2many(related="candidate_id.candidate_skill_ids", readonly=False)
|
||
|
skill_ids = fields.Many2many(related="candidate_id.skill_ids", readonly=False)
|