From 692cee113c0e2ae9aa3748c7de1836aa104baad7 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Mon, 4 Jan 2021 23:11:35 +1100 Subject: [PATCH] Display "expiry date" column in stock table --- InvenTree/templates/js/stock.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/InvenTree/templates/js/stock.js b/InvenTree/templates/js/stock.js index 65df58c4b6..af0c85fc02 100644 --- a/InvenTree/templates/js/stock.js +++ b/InvenTree/templates/js/stock.js @@ -587,6 +587,11 @@ function loadStockTable(table, options) { return locationDetail(row); } }, + { + field: 'expiry_date', + title: '{% trans "Expiry Date" %}', + sortable: true, + }, { field: 'notes', title: '{% trans "Notes" %}',