2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +00:00

Add ability to move a stock item

This commit is contained in:
Oliver
2018-04-30 01:00:18 +10:00
parent bee760d184
commit d68b51e007
5 changed files with 48 additions and 4 deletions

View File

@ -10,7 +10,25 @@
<hr>
<table class='table table-striped' id='part-table'>
<thead>
<tr>
<th>Part</th>
<th>Source</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
{% for item in build.part.bom_items.all %}
<tr>
<td colspan='3'><b><i>{{ item.sub_part.name }}</b></i></td>
</tr>
<tr>
<td></td>
<td><i>Select...</i></td>
<td></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}