diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js
index 77341fe363..5a5a628b9c 100644
--- a/InvenTree/static/script/inventree/stock.js
+++ b/InvenTree/static/script/inventree/stock.js
@@ -42,21 +42,35 @@ function moveStock(rows, options) {
// Extact part row info
var parts = [];
- for (i = 0; i < rows.length; i++) {
- parts.push(rows[i].pk);
- }
+ var html = "Select new location: \n";
- var form = "
";
- modalSetContent(modal, form);
+ html += "The following stock items will be moved:
\n";
+
+ for (i = 0; i < rows.length; i++) {
+ parts.push(rows[i].pk);
+
+ html += "
" + rows[i].quantity + " × " + rows[i].part.name;
+
+ if (rows[i].location) {
+ html += " (" + rows[i].location.name + ")";
+ }
+
+ html += "