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

17 lines
672 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="l10n_in.product_template_hsn_code">
<field name="name">l10n_in.product.template.form.hsn_code</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view"/>
<field name="arch" type="xml">
<field name="categ_id" position="after">
<field name="l10n_in_hsn_code" widget="l10n_in_hsn_autocomplete" invisible="'IN' not in fiscal_country_codes"/>
<field name="l10n_in_hsn_description" invisible="1"/>
</field>
</field>
</record>
</odoo>