forked from Mapan/odoo17e
13 lines
332 B
Python
13 lines
332 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
# == External Trade==
|
|
l10n_mx_edi_num_exporter = fields.Char(
|
|
related='company_id.l10n_mx_edi_num_exporter', readonly=False,
|
|
string='Number of Reliable Exporter')
|