From e560ea4a419e1e61d776245b99ffa0e60b4d0e22 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Fri, 12 Apr 2019 23:10:32 +1000 Subject: [PATCH] Update edit form for StockItem - Disallow direct quantity editing (must perform stocktake) - Add notes field to allow editing --- InvenTree/stock/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/stock/forms.py b/InvenTree/stock/forms.py index ca9d6f6360..60e2382930 100644 --- a/InvenTree/stock/forms.py +++ b/InvenTree/stock/forms.py @@ -62,7 +62,7 @@ class EditStockItemForm(HelperForm): model = StockItem fields = [ - 'quantity', 'batch', 'status', + 'notes' ] \ No newline at end of file