mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-26 12:21:59 +02:00
12 lines
322 B
Python
12 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,
|
|
)
|