forked from Mapan/odoo17e
14 lines
434 B
Python
14 lines
434 B
Python
# coding: utf-8
|
|
# 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_mx_edi_decimal_places = fields.Integer(
|
|
'Number of decimals', readonly=True,
|
|
help='Number of decimals to be supported for this currency, according '
|
|
'to the SAT. It will be used in the CFDI to format amounts.')
|