blob: 24ef449c6df6308c974a115d9545df642fa1a4cb (
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 ResCurrency(models.Model):
_inherit = "res.currency"
l10n_ar_afip_code = fields.Char('AFIP Code', size=4, help='This code will be used on electronic invoice')
|