refactor: update TravelSummary and TravelList components for improved data fetching and summary view #1658

Merged
pablone merged 2 commits from hotFixTravelSummaryDialog into master 2025-03-31 10:56:42 +00:00
2 changed files with 12 additions and 19 deletions

View File

@ -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"

View File

@ -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,
}, },
], ],