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

14 lines
624 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_purchase_order_form_inherit_l10n_in_purchase" model="ir.ui.view">
<field name="name">purchase.order.form.inherit.l10n.in.purchase</field>
<field name="model">purchase.order</field>
<field name="inherit_id" ref="purchase.purchase_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='partner_id']" position="after">
<field name="l10n_in_gst_treatment" invisible="country_code != 'IN'" required="country_code == 'IN'"/>
</xpath>
</field>
</record>
</odoo>