Enforce type of inheriting view

This commit is contained in:
jmartin 2015-11-13 17:03:52 +01:00
parent 380e217ba8
commit 4440bfc7b7
1 changed files with 2 additions and 2 deletions

View File

@ -3,13 +3,13 @@
<data>
<record model="ir.ui.view" id="location_view_form">
<field name="model">stock.location</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="stock.location_view_form"/>
<field name="name">location_form</field>
</record>
<record model="ir.ui.view" id="location_view_list">
<field name="model">stock.location</field>
<field name="type">tree</field>
<field name="type" eval="None"/>
<field name="inherit" ref="stock.location_view_list"/>
<field name="name">location_list</field>
</record>