forked from verdnatura/salix-front
refactor: refs #6273 update locale
This commit is contained in:
parent
9c72597c2c
commit
a64cd6fa73
|
@ -221,10 +221,7 @@ const fetchEntryBuys = async () => {
|
||||||
:value="entry.travel.agency.name"
|
:value="entry.travel.agency.name"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<VnLv
|
<VnLv :label="t('shipped')" :value="toDate(entry.travel.shipped)" />
|
||||||
:label="t('entry.summary.travelShipped')"
|
|
||||||
:value="toDate(entry.travel.shipped)"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('entry.summary.travelWarehouseOut')"
|
:label="t('entry.summary.travelWarehouseOut')"
|
||||||
|
@ -236,10 +233,7 @@ const fetchEntryBuys = async () => {
|
||||||
v-model="entry.travel.isDelivered"
|
v-model="entry.travel.isDelivered"
|
||||||
:disable="true"
|
:disable="true"
|
||||||
/>
|
/>
|
||||||
<VnLv
|
<VnLv :label="t('landed')" :value="toDate(entry.travel.landed)" />
|
||||||
:label="t('entry.summary.travelLanded')"
|
|
||||||
:value="toDate(entry.travel.landed)"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('entry.summary.travelWarehouseIn')"
|
:label="t('entry.summary.travelWarehouseIn')"
|
||||||
|
|
|
@ -78,10 +78,7 @@ onMounted(async () => {
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</template>
|
</template>
|
||||||
<template #list-items>
|
<template #list-items>
|
||||||
<VnLv
|
<VnLv :label="t('landed')" :value="toDate(row.landed)" />
|
||||||
:label="t('entry.list.landed')"
|
|
||||||
:value="toDate(row.landed)"
|
|
||||||
/>
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('entry.list.booked')"
|
:label="t('entry.list.booked')"
|
||||||
:value="!!row.isBooked"
|
:value="!!row.isBooked"
|
||||||
|
|
Loading…
Reference in New Issue