Corrected Spacing on Right Side
This commit is contained in:
@@ -143,6 +143,7 @@ const selectAccount = (id) => {
|
|||||||
|
|
||||||
const manualAllocationSum = ref(itemInfo.value.amount || 0)
|
const manualAllocationSum = ref(itemInfo.value.amount || 0)
|
||||||
const allocationDescription = ref("")
|
const allocationDescription = ref("")
|
||||||
|
const showMoreWithoutRecipe = ref(false)
|
||||||
|
|
||||||
const saveAllocation = async (allocation) => {
|
const saveAllocation = async (allocation) => {
|
||||||
|
|
||||||
@@ -512,7 +513,7 @@ setup()
|
|||||||
>
|
>
|
||||||
<UTextarea
|
<UTextarea
|
||||||
v-model="allocationDescription"
|
v-model="allocationDescription"
|
||||||
rows="5"
|
rows="3"
|
||||||
/>
|
/>
|
||||||
</UFormGroup>
|
</UFormGroup>
|
||||||
|
|
||||||
@@ -584,7 +585,13 @@ setup()
|
|||||||
|
|
||||||
</UModal>
|
</UModal>
|
||||||
</UFormGroup>
|
</UFormGroup>
|
||||||
|
<UButton
|
||||||
|
class="mt-3"
|
||||||
|
@click="showMoreWithoutRecipe = !showMoreWithoutRecipe"
|
||||||
|
variant="outline"
|
||||||
|
>{{ showMoreWithoutRecipe ? "Weniger anzeigen" : "Mehr anzeigen" }}</UButton>
|
||||||
<UFormGroup
|
<UFormGroup
|
||||||
|
v-if="showMoreWithoutRecipe"
|
||||||
label="zusätzliche Buchungskonten"
|
label="zusätzliche Buchungskonten"
|
||||||
class="mt-3"
|
class="mt-3"
|
||||||
>
|
>
|
||||||
@@ -622,6 +629,7 @@ setup()
|
|||||||
</InputGroup>
|
</InputGroup>
|
||||||
</UFormGroup>
|
</UFormGroup>
|
||||||
<UFormGroup
|
<UFormGroup
|
||||||
|
v-if="showMoreWithoutRecipe"
|
||||||
label="Kunden"
|
label="Kunden"
|
||||||
class="mt-3"
|
class="mt-3"
|
||||||
>
|
>
|
||||||
@@ -659,6 +667,7 @@ setup()
|
|||||||
</InputGroup>
|
</InputGroup>
|
||||||
</UFormGroup>
|
</UFormGroup>
|
||||||
<UFormGroup
|
<UFormGroup
|
||||||
|
v-if="showMoreWithoutRecipe"
|
||||||
label="Lieferanten"
|
label="Lieferanten"
|
||||||
class="mt-3"
|
class="mt-3"
|
||||||
>
|
>
|
||||||
@@ -726,7 +735,7 @@ setup()
|
|||||||
</InputGroup>
|
</InputGroup>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="scrollList mt-3 px-2" style="height: 70vh;">
|
<div class="scrollList mt-3 px-2" style="height: 40vh;">
|
||||||
|
|
||||||
<UCard
|
<UCard
|
||||||
class="mt-5"
|
class="mt-5"
|
||||||
|
|||||||
Reference in New Issue
Block a user