Odoo18-Base/addons/l10n_sa_edi/views/res_company_views.xml

25 lines
1.4 KiB
XML
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_company_form" model="ir.ui.view">
<field name="name">res.company.l10n_sa_edi.form</field>
<field name="model">res.company</field>
<field name="inherit_id" ref="base.view_company_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='country_id']" position="after">
<field name="l10n_sa_edi_building_number" placeholder="Building Number"
invisible="country_code != 'SA'"
class="o_address_building_number" options='{"no_open": True, "no_create": True}'/>
<field name="l10n_sa_edi_plot_identification" placeholder="Plot Identification"
invisible="country_code != 'SA'"
class="o_address_plot_identification" options='{"no_open": True, "no_create": True}'/>
</xpath>
<xpath expr="//field[@name='vat']" position="before">
<field name="l10n_sa_additional_identification_scheme" invisible="country_code != 'SA'"/>
<field name="l10n_sa_additional_identification_number" invisible="country_code != 'SA' or l10n_sa_additional_identification_scheme == 'TIN'"/>
</xpath>
</field>
</record>
</data>
</odoo>