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

9 lines
247 B
Python

from odoo import models, fields
class PaidTimeOffAllocation(models.Model):
_name = 'hr.leave.allocation'
_inherit = 'hr.leave.allocation'
max_leaves_allocated = fields.Float(string='Max Leaves Allocated', default=20, readonly=True)