diff options
Diffstat (limited to 'addons/l10n_ar/models/res_currency.py')
| -rw-r--r-- | addons/l10n_ar/models/res_currency.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/addons/l10n_ar/models/res_currency.py b/addons/l10n_ar/models/res_currency.py new file mode 100644 index 00000000..24ef449c --- /dev/null +++ b/addons/l10n_ar/models/res_currency.py @@ -0,0 +1,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') |
