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 8 additions and 5 deletions
Showing only changes of commit e7628d3e4b - Show all commits

View File

@ -134,7 +134,7 @@ const cols = computed(() => [
<template>
<FetchData url="Companies" @on-fetch="(data) => (companies = data)" auto-load />
<VnSection
:data-key="dataKey"
:data-key
:columns="cols"
prefix="invoiceIn"
:array-data-props="{
@ -142,13 +142,13 @@ const cols = computed(() => [
order: ['issued DESC', 'id DESC'],
}"
>
<template #rightMenu>
<InvoiceInFilter data-key="InvoiceInList" />
<template #advanced-menu>
<InvoiceInFilter :data-key />
</template>
jtubau marked this conversation as resolved Outdated
Outdated
Review

SI no se usa quitar

SI no se usa quitar
<template #body>
<VnTable
ref="tableRef"
:data-key="dataKey"
:data-key
:create="{
urlCreate: 'InvoiceIns',
title: t('globals.createInvoiceIn'),
@ -202,7 +202,10 @@ const cols = computed(() => [
option-label="code"
:required="true"
/>
<VnInputDate :label="t('invoiceIn.summary.issued')" v-model="data.issued" />
<VnInputDate
:label="t('invoiceIn.summary.issued')"
v-model="data.issued"
/>
</template>
</VnTable>
</template>