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