mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-26 15:52:04 +02:00
9 lines
250 B
Python
9 lines
250 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"
|
|
|
|
job_properties_definition = fields.PropertiesDefinition("Job Properties")
|