diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js
index 8fd121c23e..800b23bbb6 100644
--- a/InvenTree/static/script/inventree/stock.js
+++ b/InvenTree/static/script/inventree/stock.js
@@ -282,7 +282,7 @@ function moveStockItems(items, options) {
for (i = 0; i < response.length; i++) {
var loc = response[i];
- html += makeOption(loc.pk, loc.name + ' - ' + loc.description + '');
+ html += makeOption(loc.pk, loc.pathstring + ' - ' + loc.description + '');
}
html += "
";
@@ -312,10 +312,18 @@ function moveStockItems(items, options) {
var item = items[i];
+ var name = item.part__IPN;
+
+ if (name) {
+ name += ' | ';
+ }
+
+ name += item.part__name;
+
html += "