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

13 lines
322 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class AccountMove(models.Model):
_inherit = 'account.move'
l10n_vn_e_invoice_number = fields.Char(
string='eInvoice Number',
help='Electronic Invoicing number.',
copy=False,
)