1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_br_avatax/models/l10n_br_ncm_code.py
2024-12-10 09:04:09 +07:00

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")