blob: 71fffeaa5af5f0550d716ce94a6a9b73c421ac2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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" attrs="{'invisible': [('type','!=','service')]}">
<field name="service_to_purchase"/>
</group>
</xpath>
</field>
</record>
</odoo>
|