refactor: refs #8316 used VnSection and VnCardBeta #1145

Merged
alexm merged 14 commits from 8316-invoiceInCardWithVnCardBeta into dev 2025-01-27 08:39:04 +00:00
1 changed files with 35 additions and 0 deletions
Showing only changes of commit 3c87882805 - Show all commits

View File

@ -1,6 +1,40 @@
<script setup>
import VnCardBeta from 'components/common/VnCardBeta.vue';
import InvoiceInDescriptor from './InvoiceInDescriptor.vue';
const filter = {
include: [
{
relation: 'supplier',
scope: {
include: {
relation: 'contacts',
scope: { where: { email: { neq: null } } },
},
},
},
{ relation: 'invoiceInDueDay' },
{ relation: 'company' },
{ relation: 'currency' },
{
relation: 'dms',
scope: {
fields: [
'dmsTypeFk',
'reference',
'hardCopyNumber',
'workerFk',
'description',
'hasFile',
'file',
'created',
'companyFk',
'warehouseFk',
],
},
},
],
};
</script>
<template>
@ -8,5 +42,6 @@ import InvoiceInDescriptor from './InvoiceInDescriptor.vue';
data-key="InvoiceIn"
base-url="InvoiceIns"
:descriptor="InvoiceInDescriptor"
:filter="filter"
/>
</template>