forked from Mapan/odoo17e
11 lines
268 B
Python
11 lines
268 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models, fields
|
|
|
|
|
|
class L10nBrNCMCode(models.Model):
|
|
_name = "l10n_br.ncm.code"
|
|
_description = "NCM Code"
|
|
|
|
code = fields.Char("Code")
|
|
name = fields.Char("Name")
|