1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_lt_hr_payroll/models/hr_employee.py
2024-12-10 09:04:09 +07:00

15 lines
435 B
Python

# -*- coding:utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class HrEmployee(models.Model):
_inherit = 'hr.employee'
l10n_lt_working_capacity = fields.Selection([
('0_25', 'Between 0-25%'),
('30_55', 'Between 30-55%'),
('60_100', 'Between 60-100%'),
], default='60_100', string="Working Capacity", groups="hr.group_hr_user")