Skip to content
Snippets Groups Projects
Commit 0ce512d2 authored by Arnold Moyaux's avatar Arnold Moyaux Committed by Simon Lejeune
Browse files

[IMP] stock: package.destination kanban view

Add a kanban view in order to have a better display when the user is in
mobile mode.

task-1872345
parent a533b9f2
Branches
Tags
No related merge requests found
......@@ -16,6 +16,30 @@
<field name="qty_done" String="quantity"/>
<field name="lot_id" groups="stock.group_production_lot"/>
</tree>
<kanban>
<field name="product_id"/>
<field name="qty_done"/>
<field name="location_dest_id"/>
<templates>
<t t-name="kanban-box">
<div class="container o_kanban_card_content">
<div class="row">
<div class="col-6 o_kanban_primary_left">
<field name="product_id"/>
</div>
<div class="col-6 o_kanban_primary_right">
<field name="qty_done" String="quantity"/>
</div>
</div>
<div class="row">
<div class="col-12">
<field name="location_dest_id"/>
</div>
</div>
</div>
</t>
</templates>
</kanban>
</field>
</div>
<div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment