remove v-if
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
William Buezas 2024-02-13 10:49:27 -03:00
parent 2693f259d4
commit ca06140a8d
1 changed files with 29 additions and 33 deletions

View File

@ -442,39 +442,35 @@ const cleanDragAndDropData = () => {
entryRowIndex === index && props.rowIndex === draggedRowIndex, entryRowIndex === index && props.rowIndex === draggedRowIndex,
}" }"
> >
<template v-if="entry"> <QTd class="row justify-center">
<QTd class="row justify-center"> <QBtn flat color="primary">{{ entry.id }} </QBtn>
<QBtn flat color="primary">{{ entry.id }} </QBtn> <EntryDescriptorProxy :id="entry.id" />
<EntryDescriptorProxy :id="entry.id" /> </QTd>
</QTd> <QTd>
<QTd> <QBtn flat color="primary" dense>{{ entry.supplierName }}</QBtn>
<QBtn flat color="primary" dense>{{ <SupplierDescriptorProxy :id="entry.supplierFk" />
entry.supplierName </QTd>
}}</QBtn> <QTd></QTd>
<SupplierDescriptorProxy :id="entry.supplierFk" /> <QTd
</QTd> ><span>{{ toCurrency(entry.invoiceAmount) }}</span></QTd
<QTd></QTd> >
<QTd <QTd
><span>{{ toCurrency(entry.invoiceAmount) }}</span></QTd ><span>{{ entry.reference }}</span></QTd
> >
<QTd <QTd
><span>{{ entry.reference }}</span></QTd ><span>{{ entry.stickers }}</span></QTd
> >
<QTd <QTd></QTd>
><span>{{ entry.stickers }}</span></QTd <QTd
> ><span>{{ entry.loadedkg }}</span></QTd
<QTd></QTd> >
<QTd <QTd
><span>{{ entry.loadedkg }}</span></QTd ><span>{{ entry.volumeKg }}</span></QTd
> >
<QTd <QTd></QTd>
><span>{{ entry.volumeKg }}</span></QTd <QTd></QTd>
> <QTd></QTd>
<QTd></QTd> <QTd></QTd>
<QTd></QTd>
<QTd></QTd>
<QTd></QTd>
</template>
</QTr> </QTr>
</template> </template>
</QTable> </QTable>