refactor: refs #7385 update ticket columns to use 'delivered' and 'forecast' fields in RouteSummary
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
b25bd19bb5
commit
2f20abf388
|
@ -81,16 +81,16 @@ const ticketColumns = ref([
|
||||||
align: 'left',
|
align: 'left',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'dated',
|
name: 'delivered',
|
||||||
label: t('route.delivered'),
|
label: t('route.delivered'),
|
||||||
field: (row) => dashIfEmpty(toDate(row?.landed)),
|
field: (row) => dashIfEmpty(toDate(row?.delivered)),
|
||||||
sortable: false,
|
sortable: false,
|
||||||
align: 'center',
|
align: 'center',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'prevision',
|
name: 'forecast',
|
||||||
label: t('route.forecast'),
|
label: t('route.forecast'),
|
||||||
field: (row) => dashIfEmpty(toDate(row?.eta)),
|
field: (row) => dashIfEmpty(toDate(row?.forecast)),
|
||||||
sortable: false,
|
sortable: false,
|
||||||
align: 'center',
|
align: 'center',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue