Odoo18-Base/addons/hr_recruitment/models/res_company.py
2025-01-06 10:57:38 +07:00

11 lines
340 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
candidate_properties_definition = fields.PropertiesDefinition('Candidate Properties')
job_properties_definition = fields.PropertiesDefinition("Job Properties")