feat: refs #8721 add ticket navigation and update route columns #1554

Merged
jtubau merged 10 commits from 8721-addBtnToTicketsListOfRoute into dev 2025-03-12 11:42:39 +00:00
2 changed files with 19 additions and 6 deletions

View File

@ -11,6 +11,7 @@ import AgencyDescriptorProxy from 'src/pages/Route/Agency/Card/AgencyDescriptorP
import VehicleDescriptorProxy from 'src/pages/Route/Vehicle/Card/VehicleDescriptorProxy.vue';
import VnSection from 'src/components/common/VnSection.vue';
import VnSelectWorker from 'src/components/common/VnSelectWorker.vue';
import RouteTickets from './RouteTickets.vue';
const { t } = useI18n();
const { viewSummary } = useSummaryDialog();
@ -26,6 +27,12 @@ const routeFilter = {
},
],
};
function redirectToTickets(id) {
const url = `#/route/${id}/tickets`;
window.open(url, '_blank');
}
const columns = computed(() => [
{
align: 'right',
@ -141,6 +148,12 @@ const columns = computed(() => [
align: 'right',
name: 'tableActions',
actions: [
{
title: t('globals.pageTitles.tickets'),
icon: 'vn:ticket',
action: (row) => redirectToTickets(row?.id),
isPrimary: true,
},
{
title: t('components.smartCard.viewSummary'),
icon: 'preview',

View File

@ -37,9 +37,9 @@ const columns = computed(() => [
align: 'left',
},
{
name: 'city',
label: t('City'),
field: (row) => row?.city,
name: 'client',
label: t('Client'),
field: (row) => row?.nickname,
sortable: false,
align: 'left',
},
@ -51,9 +51,9 @@ const columns = computed(() => [
align: 'center',
},
{
name: 'client',
label: t('Client'),
field: (row) => row?.nickname,
name: 'city',
label: t('City'),
field: (row) => row?.city,
sortable: false,
align: 'left',
},