oca-technical/odoo-bringout-oca-hr-attendance-hr_attendance_autoclose/hr_attendance_autoclose/models/hr_employee.py
2025-08-29 15:43:03 +02:00

13 lines
304 B
Python

# Copyright 2019 Creu Blanca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class HrEmployee(models.Model):
_inherit = "hr.employee"
no_autoclose = fields.Boolean(
string="Don't Autoclose Attendances", groups="hr.group_hr_user"
)