mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-26 18:42:03 +02:00
10 lines
266 B
Python
10 lines
266 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
l10n_es_simplified_invoice_limit = fields.Float(
|
|
related='company_id.l10n_es_simplified_invoice_limit',
|
|
readonly=False,
|
|
)
|