summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCefin <kevon@tuta.io>2021-10-28 18:30:32 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-07-08 09:58:49 +0200
commit71773dda9a0577390112fa26d88066a709b445af (patch)
tree061ebc311f9b7d4799e8bf7a04b5040837c9eb25
parent98cbce5fd13aba9e8aa812172d83b1777b833c63 (diff)
downloadIshtar-71773dda9a0577390112fa26d88066a709b445af.tar.bz2
Ishtar-71773dda9a0577390112fa26d88066a709b445af.zip
modify location type on warehouse lot #5183 part one
-rw-r--r--archaeological_warehouse/forms.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py
index 6638140d6..010b6a292 100644
--- a/archaeological_warehouse/forms.py
+++ b/archaeological_warehouse/forms.py
@@ -696,16 +696,17 @@ class QAContainerFormMulti(QAForm):
PREFIX = "qa"
form_admin_name = _("Container - Quick action - Modify")
form_slug = "container-quickaction-modify"
- base_models = ["qaparent", "qacontainer_type", "qalocation", "qaresponsibility"]
+ base_models = ["qaparent", "qacontainer_type", "qalocation", "qalocation_type", "qaresponsibility"]
associated_models = {
"qaparent": models.Container,
"qacontainer_type": models.ContainerType,
"qalocation": models.Warehouse,
+ "qalocation_type": models.WarehouseType,
"qaresponsibility": models.Warehouse,
}
MULTI = True
- REPLACE_FIELDS = ["qaparent", "qacontainer_type", "qalocation", "qaresponsibility"]
+ REPLACE_FIELDS = ["qaparent", "qacontainer_type", "qalocation", "qalocation_type", "qaresponsibility"]
HEADERS = {
"qalocation": FormHeader(_("Warehouse")),
@@ -723,6 +724,9 @@ class QAContainerFormMulti(QAForm):
validators=[valid_id(models.Warehouse)],
required=False,
)
+ qalocation_type = forms.ChoiceField(
+ label=_("Location type"), required=False, choices=[]
+ )
qaresponsibility = forms.IntegerField(
label=_("Responsibility"),
widget=widgets.JQueryAutoComplete(
@@ -744,6 +748,7 @@ class QAContainerFormMulti(QAForm):
TYPES = [
FieldType("qacontainer_type", models.ContainerType),
+ FieldType("qalocation_type", models.WarehouseType),
]
def __init__(self, *args, **kwargs):