Merge pull request 'refactor: update TravelSummary and TravelList components for improved data fetching and summary view' (!1658) from hotFixTravelSummaryDialog into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1658
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Pablo Natek 2025-03-31 10:56:40 +00:00
commit 767a6302e1
2 changed files with 12 additions and 19 deletions

View File

@ -268,13 +268,6 @@ const getLink = (param) => `#/travel/${entityId.value}/${param}`;
</script>
<template>
<FetchData
url="Warehouses"
:filter="{ fields: ['id', 'name'] }"
order="name"
@on-fetch="(data) => (warehouses = data)"
auto-load
/>
<CardSummary
ref="summaryRef"
:url="`Travels/${entityId}/getTravel`"
@ -414,18 +407,18 @@ const getLink = (param) => `#/travel/${entityId.value}/${param}`;
</template>
</QTable>
</QCard>
<QCard class="full-width" v-if="thermographs.length > 0">
<RouterLink
class="header header-link"
:to="{
name: 'TravelThermographsIndex',
params: { id: travel.id },
}"
>
{{ t('travel.summary.thermographs') }}
<QIcon name="open_in_new" />
</RouterLink>
<FetchData
url="Warehouses"
:filter="{ fields: ['id', 'name'] }"
order="name"
@on-fetch="(data) => (warehouses = data)"
auto-load
/>
<VnTitle
:url="getLink('thermographs')"
:text="t('travel.summary.thermographs')"
/>
<QTable
:rows="thermographs"
:columns="thermographsTableColumns"

View File

@ -201,7 +201,7 @@ const columns = computed(() => [
{
title: t('components.smartCard.viewSummary'),
icon: 'preview',
action: (row) => viewSummary(row.id, TravelSummary),
action: (row) => viewSummary(row.id, TravelSummary, 'lg-width'),
isPrimary: true,
},
],