Odoo18-Base/addons/l10n_es/views/res_config_settings_views.xml
2025-01-06 10:57:38 +07:00

21 lines
941 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="name">res.config.settings.view.form</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="account.res_config_settings_view_form"/>
<field name="arch" type="xml">
<xpath expr="//app[@name='account']/block" position="after">
<block title="Spain Localization" name="spain_localization" invisible="1">
<setting string="Simplified Invoice Limit" title="">
<div class="text-muted">
Above this limit the simplified invoice won't be made
</div>
<field name="l10n_es_simplified_invoice_limit"/>
</setting>
</block>
</xpath>
</field>
</record>
</odoo>