mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-17 20:45:44 +00:00
Don't show zero-quantity items when ordering against a build
This commit is contained in:
@ -13,6 +13,7 @@
|
||||
<th>Part</th>
|
||||
<th>Description</th>
|
||||
<th>Available</th>
|
||||
<th>On Order</th>
|
||||
<th>Required</th>
|
||||
<th>Allocated</th>
|
||||
</tr>
|
||||
@ -26,6 +27,7 @@
|
||||
</td>
|
||||
<td>{{ item.part.description }}</td>
|
||||
<td>{{ item.part.total_stock }}</td>
|
||||
<td>{{ item.part.on_order }}</td>
|
||||
<td>{{ item.quantity }}</td>
|
||||
<td>{{ item.allocated }}</td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user