diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js
index 4f32c3f753..222bca8f20 100644
--- a/InvenTree/static/script/inventree/stock.js
+++ b/InvenTree/static/script/inventree/stock.js
@@ -64,7 +64,7 @@ function updateStock(items, options={}) {
html += '
';
- html += '' + item.part.name + ' | ';
+ html += '' + item.part.full_name + ' | ';
if (item.location) {
html += '' + item.location.name + ' | ';
@@ -289,7 +289,7 @@ function moveStockItems(items, options) {
html += "
";
- html += "" + item.part.name + " | ";
+ html += "" + item.part.full_name + " | ";
html += "" + item.location.pathstring + " | ";
html += "" + item.quantity + " | ";