[ADD]hr_employee_stats_sheet

This commit is contained in:
2025-02-12 11:49:51 +01:00
parent 7353c84ded
commit 2d7532121e
18 changed files with 874 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
recovery_type_id = fields.Many2one(
"hr.leave.type", string="Leave recovery type"
)
coef = fields.Float("Coef", default=25)
auto_validate_recovery_allocation = fields.Boolean("Auto validate recovery allocation", default=True)