mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
11 lines
206 B
Python
11 lines
206 B
Python
from odoo import api, fields, models
|
|
|
|
|
|
class CAHRContract(models.Model):
|
|
_inherit = 'hr.contract'
|
|
|
|
ca_payroll_config_id = fields.Many2one('hr.contract.ca_payroll_config', 'Canada Payroll Forms')
|
|
|
|
|
|
|