mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-25 17:32:03 +02:00
7 lines
183 B
Python
7 lines
183 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
applicant_ids = fields.One2many("hr.applicant", "partner_id", string="Applicants")
|