refactor: update TravelSummary and TravelList components for improved data fetching and summary view #1658
|
@ -268,13 +268,6 @@ const getLink = (param) => `#/travel/${entityId.value}/${param}`;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
|
||||||
url="Warehouses"
|
|
||||||
:filter="{ fields: ['id', 'name'] }"
|
|
||||||
order="name"
|
|
||||||
@on-fetch="(data) => (warehouses = data)"
|
|
||||||
auto-load
|
|
||||||
/>
|
|
||||||
<CardSummary
|
<CardSummary
|
||||||
ref="summaryRef"
|
ref="summaryRef"
|
||||||
:url="`Travels/${entityId}/getTravel`"
|
:url="`Travels/${entityId}/getTravel`"
|
||||||
|
@ -414,18 +407,18 @@ const getLink = (param) => `#/travel/${entityId.value}/${param}`;
|
||||||
</template>
|
</template>
|
||||||
</QTable>
|
</QTable>
|
||||||
</QCard>
|
</QCard>
|
||||||
|
|
||||||
<QCard class="full-width" v-if="thermographs.length > 0">
|
<QCard class="full-width" v-if="thermographs.length > 0">
|
||||||
<RouterLink
|
<FetchData
|
||||||
class="header header-link"
|
url="Warehouses"
|
||||||
:to="{
|
:filter="{ fields: ['id', 'name'] }"
|
||||||
name: 'TravelThermographsIndex',
|
order="name"
|
||||||
params: { id: travel.id },
|
@on-fetch="(data) => (warehouses = data)"
|
||||||
}"
|
auto-load
|
||||||
>
|
/>
|
||||||
{{ t('travel.summary.thermographs') }}
|
<VnTitle
|
||||||
<QIcon name="open_in_new" />
|
:url="getLink('thermographs')"
|
||||||
</RouterLink>
|
:text="t('travel.summary.thermographs')"
|
||||||
|
/>
|
||||||
<QTable
|
<QTable
|
||||||
:rows="thermographs"
|
:rows="thermographs"
|
||||||
:columns="thermographsTableColumns"
|
:columns="thermographsTableColumns"
|
||||||
|
|
|
@ -201,7 +201,7 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
title: t('components.smartCard.viewSummary'),
|
title: t('components.smartCard.viewSummary'),
|
||||||
icon: 'preview',
|
icon: 'preview',
|
||||||
action: (row) => viewSummary(row.id, TravelSummary),
|
action: (row) => viewSummary(row.id, TravelSummary, 'lg-width'),
|
||||||
isPrimary: true,
|
isPrimary: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue