diff --git a/InvenTree/part/templates/part/bom.html b/InvenTree/part/templates/part/bom.html index 512b6d2516..e607b9752f 100644 --- a/InvenTree/part/templates/part/bom.html +++ b/InvenTree/part/templates/part/bom.html @@ -13,7 +13,7 @@
Part | diff --git a/InvenTree/part/templates/part/stock.html b/InvenTree/part/templates/part/stock.html index 60e34ac124..e2176afaec 100644 --- a/InvenTree/part/templates/part/stock.html +++ b/InvenTree/part/templates/part/stock.html @@ -10,7 +10,11 @@||||||||||
---|---|---|---|---|---|---|---|---|---|---|
Link | + {% if part.trackable %} +Serial Number | + {% else %}Quantity | + {% endif %}Location | Supplier part | Stocktake | @@ -21,7 +25,13 @@ {% for stock in part.locations.all %}|||||
Click | -{{ stock.quantity }} | ++ {% if part.trackable %} + {{ stock.serial }} + {% else %} + {{ stock.quantity }} + {% endif %} + | {% if stock.location %} {{ stock.location.name }} |