This commit is contained in:
parent
b47d022f94
commit
e7628d3e4b
|
@ -134,7 +134,7 @@ const cols = computed(() => [
|
||||||
<template>
|
<template>
|
||||||
<FetchData url="Companies" @on-fetch="(data) => (companies = data)" auto-load />
|
<FetchData url="Companies" @on-fetch="(data) => (companies = data)" auto-load />
|
||||||
<VnSection
|
<VnSection
|
||||||
:data-key="dataKey"
|
:data-key
|
||||||
:columns="cols"
|
:columns="cols"
|
||||||
prefix="invoiceIn"
|
prefix="invoiceIn"
|
||||||
:array-data-props="{
|
:array-data-props="{
|
||||||
|
@ -142,13 +142,13 @@ const cols = computed(() => [
|
||||||
order: ['issued DESC', 'id DESC'],
|
order: ['issued DESC', 'id DESC'],
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<template #rightMenu>
|
<template #advanced-menu>
|
||||||
<InvoiceInFilter data-key="InvoiceInList" />
|
<InvoiceInFilter :data-key />
|
||||||
</template>
|
</template>
|
||||||
<template #body>
|
<template #body>
|
||||||
<VnTable
|
<VnTable
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
:data-key="dataKey"
|
:data-key
|
||||||
:create="{
|
:create="{
|
||||||
urlCreate: 'InvoiceIns',
|
urlCreate: 'InvoiceIns',
|
||||||
title: t('globals.createInvoiceIn'),
|
title: t('globals.createInvoiceIn'),
|
||||||
|
@ -202,7 +202,10 @@ const cols = computed(() => [
|
||||||
option-label="code"
|
option-label="code"
|
||||||
:required="true"
|
:required="true"
|
||||||
/>
|
/>
|
||||||
<VnInputDate :label="t('invoiceIn.summary.issued')" v-model="data.issued" />
|
<VnInputDate
|
||||||
|
:label="t('invoiceIn.summary.issued')"
|
||||||
|
v-model="data.issued"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</VnTable>
|
</VnTable>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue