blob: 6b86556373672332a2193c0fe911e78dae75de0d (
plain)
1
2
3
4
5
6
7
8
9
|
# 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')
|