From fa7555e34b3eae4a206054aa278d63fb20901523 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 13 May 2019 18:56:51 +1000 Subject: [PATCH] Fix part name display --- InvenTree/static/script/inventree/stock.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 + "";