2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 21:45:39 +00:00

Fix part deletion template

- Display list of stock items which will be thusly deleted
This commit is contained in:
Oliver Walters
2019-07-23 11:55:51 +10:00
parent b546b5e0cc
commit a42371598c
3 changed files with 13 additions and 8 deletions

View File

@ -16,12 +16,12 @@
</p>
{% endif %}
{% if part.locations.all|length > 0 %}
{% if part.stock_items.all|length > 0 %}
<hr>
<p>There are {{ part.locations.all|length }} stock entries defined for this part. If you delete this part, the following stock entries will also be deleted:
<p>There are {{ part.stock_items.all|length }} stock entries defined for this part. If you delete this part, the following stock entries will also be deleted:
<ul class='list-group'>
{% for stock in part.locations.all %}
<li class='list-group-item'>{{ stock.location.name }} - {{ stock.quantity }} items</li>
{% for stock in part.stock_items.all %}
<li class='list-group-item'>{{ stock }}</li>
{% endfor %}
</ul>
</p>