Odoo18-Base/addons/l10n_mx_hr/models/hr_employee.py
2025-03-10 11:12:23 +07:00

13 lines
433 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class Employee(models.Model):
_inherit = 'hr.employee'
l10n_mx_nss = fields.Char('NSS', groups="hr.group_hr_user", tracking=True)
l10n_mx_curp = fields.Char('CURP', groups="hr.group_hr_user", tracking=True)
l10n_mx_rfc = fields.Char('RFC', groups="hr.group_hr_user", tracking=True)