Fixed Setup Query

This commit is contained in:
2025-03-28 15:00:03 +01:00
parent b3fd996f3f
commit c77198625c
2 changed files with 3 additions and 2 deletions

View File

@@ -369,7 +369,7 @@ const getAvailableQueryStringData = (keys) => {
<UCard class="mt-5">
<Toolbar>
<UButton
@click="router.push(`/standardEntity/tasks/create?${type.substring(0,type.length-1)}=${props.item.id}`)"
@click="router.push(`/standardEntity/tasks/create?${getAvailableQueryStringData()}`)"
>
+ Aufgabe
</UButton>
@@ -386,7 +386,7 @@ const getAvailableQueryStringData = (keys) => {
<UCard class="mt-5">
<Toolbar>
<UButton
@click="router.push(`/standardEntity/contracts/create?${type.substring(0,type.length-1)}=${props.item.id}`)"
@click="router.push(`/standardEntity/contracts/create?${getAvailableQueryStringData({type: 'confirmationOrders'})}`)"
>
+ Vertrag
</UButton>

View File

@@ -68,6 +68,7 @@ setupPage()
v-else-if="loaded && (mode === 'edit' || mode === 'create')"
:type="route.params.type"
:item="item"
:mode="mode"
/>
<EntityList
v-else-if="loaded && mode === 'list'"