11 lines
340 B
Python
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")
|