1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_vn_edi_viettel/models/res_partner.py
2024-12-10 09:04:09 +07:00

16 lines
471 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResPartner(models.Model):
_inherit = 'res.partner'
l10n_vn_edi_symbol = fields.Many2one(
comodel_name='l10n_vn_edi_viettel.sinvoice.symbol',
string='Default Symbol',
help='If set, this symbol will be used as the default symbol for all invoices of this customer.',
company_dependent=True,
copy=False,
)