12 lines
314 B
Python
12 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,
|
|
)
|