Better dispaly of stock status

- Send status text in JSON
- Only display status if it is not "OK"
This commit is contained in:
Oliver Walters 2019-06-02 13:53:11 +10:00
parent 82f3773aa1
commit 013a85e6f7
2 changed files with 6 additions and 1 deletions

View File

@ -153,7 +153,10 @@ function loadStockTable(table, options) {
var text = renderLink(val, '/stock/item/' + row.pk + '/');
text = text + "<span class='badge'>" + row.status_text + "</span>";
if (row.status_text != 'OK') {
text = text + "<span class='badge'>" + row.status_text + "</span>";
}
return text;
}
},

View File

@ -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):