diff --git a/InvenTree/static/script/inventree/stock.js b/InvenTree/static/script/inventree/stock.js
index 65b0c55da5..facbaa65f5 100644
--- a/InvenTree/static/script/inventree/stock.js
+++ b/InvenTree/static/script/inventree/stock.js
@@ -153,7 +153,10 @@ function loadStockTable(table, options) {
var text = renderLink(val, '/stock/item/' + row.pk + '/');
- text = text + "" + row.status_text + "";
+ if (row.status_text != 'OK') {
+ text = text + "" + row.status_text + "";
+ }
+
return text;
}
},
diff --git a/InvenTree/stock/api.py b/InvenTree/stock/api.py
index c1c2b8e1cf..dd899ebe0a 100644
--- a/InvenTree/stock/api.py
+++ b/InvenTree/stock/api.py
@@ -306,6 +306,8 @@ class StockList(generics.ListCreateAPIView):
else:
item['location__path'] = None
+ item['status_text'] = StockItem.ITEM_STATUS_CODES[item['status']]
+
return Response(data)
def get_queryset(self):