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

25 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_company_form" model="ir.ui.view">
<field name="name">res.company.form.inherit.l10n_au</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='vat']" position="attributes">
<attribute name="invisible" add="country_code == 'AU'" separator=" or "/>
</xpath>
<xpath expr="//field[@name='vat']" position="after">
<field name="vat" string="ABN" invisible="country_code != 'AU'"/>
</xpath>
<xpath expr="//field[@name='company_registry']" position="attributes">
<attribute name="invisible" add="country_code == 'AU'" separator=" or "/>
</xpath>
<xpath expr="//field[@name='company_registry']" position="after">
<field name="company_registry" string="ACN" invisible="country_code != 'AU'"/>
</xpath>
</field>
</record>
</odoo>