Enforce type of inheriting view

This commit is contained in:
jmartin 2015-11-13 16:59:13 +01:00
parent 008304b32b
commit 787d29e14b
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ The COPYRIGHT file at the top level of this repository contains the full copyrig
<data>
<record model="ir.ui.view" id="sale_view_form">
<field name="model">sale.sale</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="sale.sale_view_form"/>
<field name="name">sale_form</field>
</record>
@ -13,7 +13,7 @@ The COPYRIGHT file at the top level of this repository contains the full copyrig
<data>
<record model="ir.ui.view" id="sale_view_tree">
<field name="model">sale.sale</field>
<field name="type">tree</field>
<field name="type" eval="None"/>
<field name="inherit" ref="sale.sale_view_tree"/>
<field name="name">sale_list</field>
</record>