forked from Mapan/odoo17e
15 lines
390 B
Python
15 lines
390 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'
|
|
|
|
l10n_ro_work_type = fields.Selection([
|
|
('1', 'Normal Conditions'),
|
|
('2', 'Particular Conditions'),
|
|
('3', 'Special Conditions')
|
|
], string='Work type', default="1")
|