瀏覽代碼

运单跟踪节点修改

zhongxiaoyu 2 年之前
父節點
當前提交
fb8ade6408

+ 6 - 6
src/views/realTime/components/WaybillView/index.vue

@@ -136,18 +136,18 @@ const { trackAirlines, trackBoxStyle } = useTrackData(props.name, trackData)
 const tableData = computed(() =>
   trackData.value.reduce((data, current) => {
     const sameRow = data.find(row =>
-      ['subCode', 'flightNO', 'flightDate', 'stowageNo', 'CargoNo'].every(
+      ['stockCode', 'flightNO', 'flightDate', 'ULDNO', 'CargoSN'].every(
         key => row[key] === current[key]
       )
     )
     const {
-      subCode,
+      stockCode,
       flightNO,
       flightDate,
-      LoadingLocation, // 装载机场
-      UnloadingLocation, // 卸载机场
-      stowageNo,
-      CargoNo,
+      departureAirport, // 装载机场
+      arriveAirport, // 卸载机场
+      ULDNO,
+      CargoSN,
       pullMark,
       returnMark,
       transMark,

+ 4 - 4
src/views/realTime/hooks/useTable.ts

@@ -84,11 +84,11 @@ const tableColumnsMap: {
     },
     {
       columnLabel: '集装器编号',
-      columnName: 'stowageNo',
+      columnName: 'ULDNO',
       width: 100,
       needFilters: 1,
     },
-    { columnLabel: '货物编码', columnName: 'CargoNo', needFilters: 1 },
+    { columnLabel: '货物编码', columnName: 'CargoSN', needFilters: 1 },
     { columnLabel: '拉下', columnName: 'pullMark', needFilters: 1, width: 60 },
     {
       columnLabel: '退运',
@@ -118,7 +118,7 @@ const tableColumnsMap: {
     },
     {
       columnLabel: '加货',
-      columnName: 'ACC_BUP',
+      columnName: 'LS_CARGO',
       className: 'cell-filter cell-filter-green',
     },
     {
@@ -244,7 +244,7 @@ const tableColumnsMap: {
     },
     {
       columnLabel: '货物编码',
-      columnName: 'CargoNo',
+      columnName: 'CargoSN',
       width: 100,
       needFilters: 1,
     },

+ 2 - 2
src/views/realTime/hooks/useTableCellClick.ts

@@ -33,12 +33,12 @@ export function useTableCellClick(tableName?: string) {
     }
     // if (tableName?.includes('WaybillGoods')) {
     //   switch (column.property) {
-    //     case 'CargoNo':
+    //     case 'CargoSN':
     //       router.push({
     //         path: `${route.path.split('/').slice(0, -1).join('/')}/goods`,
     //         query: {
     //           waybillNO: route.query.waybillNO,
-    //           goodsNO: row.CargoNo,
+    //           goodsNO: row.CargoSN,
     //         },
     //       })
     //       break

+ 1 - 1
src/views/realTime/hooks/useTableStyle.ts

@@ -47,7 +47,7 @@ export function useTableStyle(tableName?: string) {
       }
     }
     // if (tableName?.includes('WaybillGoods')) {
-    //   if (['CargoNo'].includes(column.property)) {
+    //   if (['CargoSN'].includes(column.property)) {
     //     classes.push('cell-click')
     //   }
     // }

+ 5 - 5
src/views/realTime/hooks/useTrackData.ts

@@ -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,
@@ -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 ||