|
@@ -35,7 +35,7 @@ const trackNodesMap = {
|
|
|
},
|
|
|
{
|
|
|
name: '加货',
|
|
|
- nodeCode: 'ACC_BUP',
|
|
|
+ nodeCode: 'LS_CARGO',
|
|
|
},
|
|
|
{
|
|
|
name: '待运区',
|
|
@@ -107,8 +107,8 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
|
|
|
{
|
|
|
flightNO,
|
|
|
flightDate,
|
|
|
- LoadingLocation,
|
|
|
- UnloadingLocation,
|
|
|
+ departureAirport,
|
|
|
+ arriveAirport,
|
|
|
nodeCode,
|
|
|
execPosition,
|
|
|
ConsignmentItemPackagingQuantityQuantity,
|
|
@@ -128,7 +128,7 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
|
|
|
'DEH',
|
|
|
'ACC_CHECK',
|
|
|
'安检',
|
|
|
- 'ACC_BUP',
|
|
|
+ 'LS_CARGO',
|
|
|
'WAT_LOC',
|
|
|
'CARGOS_DEP_ULD_HANDOVER',
|
|
|
'出港货邮',
|
|
@@ -138,8 +138,8 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
|
|
|
'BILL_RETURN',
|
|
|
].includes(String(nodeCode))
|
|
|
const airport = isDeparture
|
|
|
- ? String(LoadingLocation ?? '')
|
|
|
- : String(UnloadingLocation ?? '')
|
|
|
+ ? String(departureAirport ?? '')
|
|
|
+ : String(arriveAirport ?? '')
|
|
|
const trackNode = {
|
|
|
flag: Boolean(
|
|
|
execPosition ||
|
|
@@ -150,7 +150,7 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
|
|
|
descriptions: [
|
|
|
String(execPosition ?? ''),
|
|
|
String(ConsignmentItemPackagingQuantityQuantity ?? ''),
|
|
|
- String(execResult ?? ''),
|
|
|
+ execResult ? '通过' : '未通过',
|
|
|
String(execTime ?? '').split('T')[1] ?? '',
|
|
|
],
|
|
|
}
|