[FIX] remove the custom product_kanban_view from the portal module

this view was originally introduced to workaround the impossibility to use 'groups' attribute in a kanban view, but this issue should be solved in a near future
check the product_kanban_view in stock/product_view.xml for more details

bzr revid: abo@openerp.com-20120601122448-cj15cblvlks3qumy
This commit is contained in:
Antonin Bourguignon 2012-06-01 14:24:48 +02:00
parent c2160bc88d
commit f606ccda45
1 changed files with 0 additions and 31 deletions

View File

@ -2,37 +2,6 @@
<openerp>
<data>
<record id="product_kanban_view" model="ir.ui.view">
<field name="name">Product Kanban</field>
<field name="model">product.product</field>
<field name="type">kanban</field>
<field name="arch" type="xml">
<kanban>
<field name="color"/>
<field name="type"/>
<field name="product_image"/>
<field name="list_price"/>
<templates>
<t t-name="kanban-box">
<div class="oe_product_vignette">
<div class="oe_product_img">
<a type="edit"><img t-att-src="kanban_image('product.product', 'product_image', record.id.value)" class="oe_product_photo"/></a>
</div>
<div class="oe_product_desc">
<h4><a type="edit"><field name="name"></field></a></h4>
<ul>
<li t-if="record.type.raw_value != 'service'">Stock on hand: <field name="qty_available"/> <field name="uom_id"/></li>
<li t-if="record.type.raw_value != 'service'">Stock available: <field name="virtual_available"/> <field name="uom_id"/></li>
<li>Price: <field name="lst_price"></field></li>
</ul>
</div>
</div>
</t>
</templates>
</kanban>
</field>
</record>
<record id="action_picking_tree" model="ir.actions.act_window">
<field name="name">Delivery Orders</field>
<field name="res_model">stock.picking</field>