13 lines
433 B
Python
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)
|