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

17 lines
638 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</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="purchase.view_product_supplier_inherit"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='bill']" position="before">
<group string="Reordering" invisible="type != 'service'">
<field name="service_to_purchase"/>
</group>
</xpath>
</field>
</record>
</odoo>