forked from Mapan/odoo17e
9 lines
184 B
Python
9 lines
184 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import models, fields
|
|
|
|
class Partner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
l10n_mx_edi_operator_licence = fields.Char('Operator Licence')
|