diff --git a/InvenTree/templates/js/translated/stock.js b/InvenTree/templates/js/translated/stock.js index 867c71bd0c..c5565c4131 100644 --- a/InvenTree/templates/js/translated/stock.js +++ b/InvenTree/templates/js/translated/stock.js @@ -1046,6 +1046,10 @@ function adjustStock(action, items, options={}) { var quantity = item.quantity; + if (item.part_detail.units != null) { + quantity += ` ${item.part_detail.units}`; + } + var location = locationDetail(item, false); if (item.location_detail) {