mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-23 08:52:00 +02:00
9 lines
268 B
Python
9 lines
268 B
Python
# Copyright 2024 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class HrEmployeeBase(models.AbstractModel):
|
|
_name = "hr.employee.base"
|
|
_inherit = ["hr.employee.base", "dms.field.mixin"]
|