mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 17:42:05 +02:00
11 lines
314 B
Python
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,
|
|
)
|