forked from Mapan/odoo17e
10 lines
361 B
Python
10 lines
361 B
Python
# coding: utf-8
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
l10n_co_edi_brand = fields.Char(string='Brand', help='Reported brand in the Colombian electronic invoice.')
|
|
l10n_co_edi_customs_code = fields.Char(string='Customs Code', help='10 digits Custome Code used on Exportation invoices.')
|