[WIP]hr_employee_stats_sheet

This commit is contained in:
2025-09-11 17:21:46 +02:00
parent d52b8c424e
commit 6a26457979
16 changed files with 1333 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)