Changes
This commit is contained in:
@@ -1016,7 +1016,7 @@ const setRowData = (row) => {
|
|||||||
variant="outline"
|
variant="outline"
|
||||||
class="w-full"
|
class="w-full"
|
||||||
>
|
>
|
||||||
{{row.customer ?customers.find(i => i.id === row.customer).name : "Kein Kunde ausgewählt"}}
|
{{itemInfo.customer ? customers.find(i => i.id === iteminfo.customer).name : "Kein Kunde ausgewählt"}}
|
||||||
|
|
||||||
<UIcon name="i-heroicons-chevron-right-20-solid" class="w-5 h-5 transition-transform text-gray-400 dark:text-gray-500" :class="['transform rotate-90']" />
|
<UIcon name="i-heroicons-chevron-right-20-solid" class="w-5 h-5 transition-transform text-gray-400 dark:text-gray-500" :class="['transform rotate-90']" />
|
||||||
</UButton>
|
</UButton>
|
||||||
@@ -1040,8 +1040,8 @@ const setRowData = (row) => {
|
|||||||
title="Info"
|
title="Info"
|
||||||
>
|
>
|
||||||
<template #description>
|
<template #description>
|
||||||
Kundennr: {{customers.find(i => i.id === row.customer).customerNumber}}<br>
|
Kundennr: {{customers.find(i => i.id === itemInfo.customer).customerNumber}}<br>
|
||||||
Typ: {{customers.find(i => i.id === row.customer).isCompany ? 'Firma' : 'Privat'}}<br>
|
Typ: {{customers.find(i => i.id === itemInfo.customer).isCompany ? 'Firma' : 'Privat'}}<br>
|
||||||
Notizen: <span class="truncate">{{customers.find(i => i.id === row.customer).notes}}</span>
|
Notizen: <span class="truncate">{{customers.find(i => i.id === row.customer).notes}}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user