Enforce type of inheriting view

This commit is contained in:
jmartin 2015-11-13 17:05:24 +01:00
parent 0a0573f2ad
commit ec22c51dc2
2 changed files with 3 additions and 3 deletions

View File

@ -6,13 +6,13 @@ copyright notices and license terms. -->
<data>
<record model="ir.ui.view" id="bom_input_view_form">
<field name="model">production.bom.input</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="production.bom_input_view_form"/>
<field name="name">bom_input_form</field>
</record>
<record model="ir.ui.view" id="bom_output_view_form">
<field name="model">production.bom.output</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="production.bom_output_view_form"/>
<field name="name">bom_output_form</field>
</record>

View File

@ -6,7 +6,7 @@ copyright notices and license terms. -->
<data>
<record model="ir.ui.view" id="move_view_form">
<field name="model">stock.move</field>
<field name="type">form</field>
<field name="type" eval="None"/>
<field name="inherit" ref="stock.move_view_form"/>
<field name="name">move_form</field>
</record>