change btn & prevent error: refs #5835
This commit is contained in:
parent
85d056b491
commit
61d69f7cf7
|
@ -203,7 +203,7 @@ function getLink(param) {
|
|||
@on-fetch="(data) => setData(data)"
|
||||
>
|
||||
<template #header="{ entity: invoiceIn }">
|
||||
<div>{{ invoiceIn.id }} - {{ invoiceIn.supplier.name }}</div>
|
||||
<div>{{ invoiceIn.id }} - {{ invoiceIn.supplier?.name }}</div>
|
||||
</template>
|
||||
<template #body="{ entity: invoiceIn }">
|
||||
<!--Basic Data-->
|
||||
|
@ -216,7 +216,7 @@ function getLink(param) {
|
|||
</QCardSection>
|
||||
<VnLv
|
||||
:label="t('invoiceIn.summary.supplier')"
|
||||
:value="invoiceIn.supplier.name"
|
||||
:value="invoiceIn.supplier?.name"
|
||||
/>
|
||||
<VnLv
|
||||
:label="t('invoiceIn.summary.supplierRef')"
|
||||
|
@ -224,7 +224,7 @@ function getLink(param) {
|
|||
/>
|
||||
<VnLv
|
||||
:label="t('invoiceIn.summary.currency')"
|
||||
:value="invoiceIn.currency.code"
|
||||
:value="invoiceIn.currency?.code"
|
||||
/>
|
||||
<VnLv
|
||||
:label="t('invoiceIn.summary.docNumber')"
|
||||
|
@ -273,7 +273,7 @@ function getLink(param) {
|
|||
/>
|
||||
<VnLv
|
||||
:label="t('invoiceIn.summary.company')"
|
||||
:value="invoiceIn.company.code"
|
||||
:value="invoiceIn.company?.code"
|
||||
/>
|
||||
<VnLv
|
||||
:label="t('invoiceIn.summary.booked')"
|
||||
|
|
|
@ -134,9 +134,8 @@ function viewSummary(id) {
|
|||
class="q-mt-sm"
|
||||
/>
|
||||
<QBtn
|
||||
:label="t('components.smartCard.downloadFile')"
|
||||
:label="t('Download')"
|
||||
class="q-mt-sm"
|
||||
outline
|
||||
@click.stop="downloadFile(row.dmsFk)"
|
||||
type="submit"
|
||||
color="primary"
|
||||
|
@ -169,4 +168,5 @@ function viewSummary(id) {
|
|||
es:
|
||||
Search invoice: Buscar factura emitida
|
||||
You can search by invoice reference: Puedes buscar por referencia de la factura
|
||||
Download: Descargar
|
||||
</i18n>
|
||||
|
|
Loading…
Reference in New Issue