From 8fbba6846f856b26ede2a79a9f712176d7f1c8c1 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Wed, 8 May 2019 22:05:46 +1000 Subject: [PATCH] Display part description in stock table --- InvenTree/static/script/inventree/stock.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js index f2cd50c731..2f55456cdb 100644 --- a/InvenTree/static/script/inventree/stock.js +++ b/InvenTree/static/script/inventree/stock.js @@ -369,6 +369,11 @@ function loadStockTable(table, options) { return imageHoverIcon(row.part.image_url) + renderLink(value, row.part.url); } }, + { + field: 'part.description', + title: 'Description', + sortable: true, + }, { field: 'location', title: 'Location',