mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Display part stock in build detail window
This commit is contained in:
parent
8d0789c37c
commit
55310be393
@ -42,7 +42,7 @@
|
||||
<tr>
|
||||
<th>Part</th>
|
||||
<th>Required</th>
|
||||
<th>Available</th>
|
||||
<th>Stock</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -50,7 +50,7 @@
|
||||
<tr>
|
||||
<td><a href="{% url 'part-detail' item.sub_part.id %}">{{ item.sub_part.name }}</a></td>
|
||||
<td>{{ build.quantity }} × {{ item.quantity }}</td>
|
||||
<td>{{ item.sub_part.available_stock }}</td>
|
||||
<td>{{ item.sub_part.total_stock }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
Loading…
Reference in New Issue
Block a user