Odoo18-Base/addons/l10n_mx_hr/models/hr_employee.py
2025-01-06 10:57:38 +07:00

12 lines
354 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_curp = fields.Char('CURP', groups="hr.group_hr_user", tracking=True)
l10n_mx_rfc = fields.Char('RFC', groups="hr.group_hr_user", tracking=True)