forked from Mapan/odoo17e
13 lines
352 B
Python
13 lines
352 B
Python
#-*- coding:utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrContract(models.Model):
|
|
_inherit = 'hr.contract'
|
|
_description = 'Employee Contract'
|
|
|
|
analytic_account_id = fields.Many2one(
|
|
'account.analytic.account', 'Analytic Account', check_company=True)
|