refactor: refs #8621 update column names in RouteList and add formatting for agency and vehicle fields
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jose Antonio Tubau 2025-02-26 12:08:40 +01:00
parent 083e68c291
commit 15e44174ba
1 changed files with 6 additions and 3 deletions

View File

@ -56,8 +56,9 @@ const columns = computed(() => [
}, },
{ {
align: 'left', align: 'left',
name: 'agencyName', name: 'agencyModeFk',
label: t('route.Agency'), label: t('route.Agency'),
format: (row) => row?.agencyName,
cardVisible: true, cardVisible: true,
component: 'select', component: 'select',
attrs: { attrs: {
@ -74,8 +75,9 @@ const columns = computed(() => [
}, },
{ {
align: 'left', align: 'left',
name: 'vehiclePlateNumber', name: 'vehicleFk',
label: t('route.Vehicle'), label: t('route.Vehicle'),
format: (row) => row?.vehiclePlateNumber,
cardVisible: true, cardVisible: true,
component: 'select', component: 'select',
attrs: { attrs: {
@ -155,6 +157,7 @@ const columns = computed(() => [
<template #body> <template #body>
<VnTable <VnTable
:data-key :data-key
ref="tableRef"
:columns="columns" :columns="columns"
:right-search="false" :right-search="false"
redirect="route" redirect="route"
@ -175,4 +178,4 @@ const columns = computed(() => [
</VnTable> </VnTable>
</template> </template>
</VnSection> </VnSection>
</template> </template>