fix: changed invoiceIn for InvoiceIn
This commit is contained in:
parent
2a121dbbb3
commit
eb92c69475
|
@ -166,10 +166,10 @@ const createInvoiceInCorrection = async () => {
|
|||
<InvoiceInDescriptorMenu :invoice="entity" />
|
||||
</template>
|
||||
<template #body="{ entity }">
|
||||
<VnLv :label="t('invoiceIn.list.issued')" :value="toDate(entity.issued)" />
|
||||
<VnLv :label="t('invoiceIn.summary.booked')" :value="toDate(entity.booked)" />
|
||||
<VnLv :label="t('invoiceIn.list.amount')" :value="toCurrency(totalAmount)" />
|
||||
<VnLv :label="t('invoiceIn.list.supplier')">
|
||||
<VnLv :label="t('InvoiceIn.list.issued')" :value="toDate(entity.issued)" />
|
||||
<VnLv :label="t('InvoiceIn.summary.bookedDate')" :value="toDate(entity.booked)" />
|
||||
<VnLv :label="t('InvoiceIn.list.amount')" :value="toCurrency(totalAmount)" />
|
||||
<VnLv :label="t('InvoiceIn.list.supplier')">
|
||||
<template #value>
|
||||
<span class="link">
|
||||
{{ entity?.supplier?.nickname }}
|
||||
|
@ -186,7 +186,7 @@ const createInvoiceInCorrection = async () => {
|
|||
color="primary"
|
||||
:to="routes.getSupplier(entity.supplierFk)"
|
||||
>
|
||||
<QTooltip>{{ t('invoiceIn.list.supplier') }}</QTooltip>
|
||||
<QTooltip>{{ t('InvoiceIn.list.supplier') }}</QTooltip>
|
||||
</QBtn>
|
||||
<QBtn
|
||||
size="md"
|
||||
|
@ -202,7 +202,7 @@ const createInvoiceInCorrection = async () => {
|
|||
color="primary"
|
||||
:to="routes.getTickets(entity.supplierFk)"
|
||||
>
|
||||
<QTooltip>{{ t('invoiceOut.card.ticketList') }}</QTooltip>
|
||||
<QTooltip>{{ t('InvoiceOut.card.ticketList') }}</QTooltip>
|
||||
</QBtn>
|
||||
<QBtn
|
||||
v-if="
|
||||
|
|
|
@ -69,11 +69,4 @@ InvoiceIn:
|
|||
invoicein:
|
||||
params:
|
||||
account: Ledger account
|
||||
correctingFk: Rectificative
|
||||
invoiceIn:
|
||||
list:
|
||||
issued: Issued
|
||||
amount: Amount
|
||||
supplier: Supplier
|
||||
summary:
|
||||
booked: Booked Date
|
||||
correctingFk: Rectificative
|
|
@ -67,10 +67,3 @@ invoicein:
|
|||
params:
|
||||
account: Cuenta contable
|
||||
correctingFk: Rectificativa
|
||||
invoiceIn:
|
||||
list:
|
||||
issued: F. emisión
|
||||
amount: Importe
|
||||
supplier: Proveedor
|
||||
summary:
|
||||
booked: Fecha contable
|
||||
|
|
Loading…
Reference in New Issue