mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-18 04:12:06 +02:00
9 lines
263 B
Python
9 lines
263 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import fields, models
|
|
|
|
|
|
class Uom(models.Model):
|
|
|
|
_inherit = 'uom.uom'
|
|
|
|
l10n_ar_afip_code = fields.Char('AFIP Code', help='This code will be used on electronic invoice')
|