Enforce type of inheriting view

This commit is contained in:
jmartin 2015-11-13 17:08:24 +01:00
parent 27df91525c
commit 0d36be7d43
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ this repository contains the full copyright notices and license terms. -->
<data>
<record model="ir.ui.view" id="stock_configuration_view_form">
<field name="model">stock.configuration</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit"
ref="stock.stock_configuration_view_form"/>
<field name="name">configuration_form</field>

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="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>

View File

@ -6,14 +6,14 @@ copyright notices and license terms. -->
<!-- stock.shipment.out -->
<record model="ir.ui.view" id="shipment_out_view_form">
<field name="model">stock.shipment.out</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit"
ref="stock.shipment_out_view_form"/>
<field name="name">shipment_out_form</field>
</record>
<record model="ir.ui.view" id="shipment_out_view_tree">
<field name="model">stock.shipment.out</field>
<field name="type">tree</field>
<field name="type" eval="None"/>
<field name="inherit"
ref="stock.shipment_out_view_tree"/>
<field name="name">shipment_out_tree</field>