You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
682 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Field for specifying the catering products-->
<record id="product_normal_form_view" model="ir.ui.view">
<field name="name">product.product.view.form.inherit.event.catering
</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="model">product.product</field>
<field name="arch" type="xml">
<xpath expr="//field[@name='detailed_type']" position="after">
<field name="is_catering"
attrs="{'invisible': [('detailed_type', '!=', 'service')]}"/>
</xpath>
</field>
</record>
</odoo>