mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 04:11:59 +02:00
13 lines
304 B
Python
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"
|
|
)
|