0
0
Fork 0

refactor: refs #7353 clients correction

This commit is contained in:
Jorge Penadés 2024-08-29 12:32:00 +02:00
parent 7a34309ec6
commit 76fa89c8bd
1 changed files with 2 additions and 2 deletions

View File

@ -131,13 +131,13 @@ const columns = computed(() => [
</VnRow>
</template>
<template #column-salesPersonFk="{ row }">
<QTd>
<QTd class="no-padding">
<span class="link" :title="row.salesPerson" v-text="row.salesPerson" />
<WorkerDescriptorProxy :id="row.salesPersonFk" dense />
</QTd>
</template>
<template #column-clientFk="{ row }">
<QTd>
<QTd class="no-padding">
<span class="link" :title="row.clientName" v-text="row.clientName" />
<CustomerDescriptorProxy :id="row.clientFk" />
</QTd>