oca-ocb-l10n_europe/odoo-bringout-oca-ocb-l10n_es/l10n_es/models/res_company.py
Ernad Husremovic 7721452493 19.0 vanilla
2026-03-09 09:31:28 +01:00

11 lines
314 B
Python

from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
l10n_es_simplified_invoice_limit = fields.Float(
string="Simplified Invoice limit amount",
help="Over this amount is not legally possible to create a simplified invoice",
default=400,
)