mirror of
https://github.com/NaN-tic/trytond-production_route.git
synced 2023-12-14 03:12:59 +01:00
Fix type of inherited view
This commit is contained in:
parent
7915669135
commit
bbeab55864
1 changed files with 3 additions and 3 deletions
|
@ -3,22 +3,22 @@
|
|||
<data>
|
||||
<record model="ir.ui.view" id="product-bom_view_list">
|
||||
<field name="model">product.product-production.bom</field>
|
||||
<field name="type" eval="None"/>
|
||||
<field name="inherit" ref="production.product-bom_view_list"/>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">product_bom_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="product-bom_view_list_sequence">
|
||||
<field name="model">product.product-production.bom</field>
|
||||
<field name="type" eval="None"/>
|
||||
<field name="inherit" ref="production.product-bom_view_list_sequence"/>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">product_bom_list_sequence</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="product-bom_view_form">
|
||||
<field name="model">product.product-production.bom</field>
|
||||
<field name="type" eval="None"/>
|
||||
<field name="inherit" ref="production.product-bom_view_form"/>
|
||||
<field name="type">form</field>
|
||||
<field name="name">product_bom_form</field>
|
||||
</record>
|
||||
</data>
|
||||
|
|
Loading…
Reference in a new issue