1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_ec_edi/views/product_view.xml
2024-12-10 09:04:09 +07:00

16 lines
600 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_product_template_withhold_form" model="ir.ui.view">
<field name="name">view.product.template.withhold.form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="account.product_template_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='supplier_taxes_id']" position="after">
<field name="l10n_ec_withhold_tax_id" invisible="'EC' not in fiscal_country_codes"/>
</xpath>
</field>
</record>
</odoo>