Fix type of inherited views

This commit is contained in:
Jes?s Mart?n Jim?nez 2016-07-05 14:17:49 +02:00
parent f452ec8fe6
commit 98f9b8a03d
1 changed files with 3 additions and 3 deletions

View File

@ -3,14 +3,14 @@
<data>
<record model="ir.ui.view" id="production_view_form">
<field name="model">production</field>
<field name="type">form</field>
<field name="name">production_form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="production.production_view_form"/>
<field name="name">production_form</field>
</record>
<record model="ir.ui.view" id="template_view_form">
<field name="model">product.template</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="product.template_view_form"/>
<field name="name">template_form</field>
</record>