Added Space Type "Standort"

This commit is contained in:
2024-08-21 19:04:29 +02:00
parent db096e462c
commit 75963ce8b4

View File

@@ -21,7 +21,7 @@ const itemInfo = ref({
zip:"" zip:""
} }
}) })
const spaceTypes = ["Regalplatz", "Kiste", "Palettenplatz", "Sonstiges"] const spaceTypes = ["Standort","Regalplatz", "Kiste", "Palettenplatz", "Sonstiges"]
const spaceProducts = ref([]) const spaceProducts = ref([])
const spaceMovements = ref([]) const spaceMovements = ref([])
@@ -203,6 +203,7 @@ setupPage()
</UFormGroup> </UFormGroup>
<UFormGroup <UFormGroup
label="Übergeordneter Lagerplatz:" label="Übergeordneter Lagerplatz:"
v-if="itemInfo.type !== 'Standort'"
> >
<USelectMenu <USelectMenu
:options="spaces" :options="spaces"
@@ -214,7 +215,7 @@ setupPage()
</USelectMenu> </USelectMenu>
</UFormGroup> </UFormGroup>
</div> </div>
<div class="w-1/2"> <div class="w-1/2" v-if="itemInfo.type === 'Standort'">
<UDivider> <UDivider>
Ort Ort
</UDivider> </UDivider>