17 lines
718 B
XML
17 lines
718 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="product_template_form_view_inherit" model="ir.ui.view">
|
|
<field name="name">product.template.form.inherit.pos.combo.tax</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="account.product_template_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//label[@for='taxes_id']" position="attributes">
|
|
<attribute name="invisible">False</attribute>
|
|
</xpath>
|
|
<xpath expr="//div[@name='taxes_div']" position="attributes">
|
|
<attribute name="invisible">False</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|