From f27037584745044c77bf135202080c1e96819897 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sat, 4 May 2019 19:03:32 +1000 Subject: [PATCH] Add ability to edit default_location for a PartCategory --- InvenTree/part/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/InvenTree/part/forms.py b/InvenTree/part/forms.py index 0363b4ab37..e97386d229 100644 --- a/InvenTree/part/forms.py +++ b/InvenTree/part/forms.py @@ -90,7 +90,8 @@ class EditCategoryForm(HelperForm): fields = [ 'parent', 'name', - 'description' + 'description', + 'default_location' ]