7924-itemInsepction #1114

Merged
jgallego merged 4 commits from 7924-itemInsepction into dev 2024-12-29 09:10:43 +00:00
1 changed files with 10 additions and 16 deletions
Showing only changes of commit ba7e636a19 - Show all commits

View File

@ -265,11 +265,6 @@ const columns = computed(() => [
showValue: false,
sortable: true,
},
{
label: '',
name: 'isCustomInspectionRequired',
align: 'center',
},
]);
async function getData() {
@ -597,7 +592,16 @@ const getColor = (percentage) => {
<QBtn flat class="link" dense>{{ entry.supplierName }}</QBtn>
<SupplierDescriptorProxy :id="entry.supplierFk" />
</QTd>
<QTd />
<QTd>
<QIcon
v-if="entry.isCustomInspectionRequired"
name="warning"
color="negative"
size="xs"
:title="t('requiresInspection')"
>
</QIcon>
</QTd>
<QTd>
<span>{{ toCurrency(entry.invoiceAmount) }}</span>
</QTd>
@ -633,16 +637,6 @@ const getColor = (percentage) => {
/>
</QBtn>
</QTd>
<QTd>
<QIcon
v-if="entry.isCustomInspectionRequired"
name="warning"
color="negative"
size="xs"
:title="t('requiresInspection')"
>
</QIcon>
</QTd>
</QTr>
</template>
</QTable>