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