From 3e28500e76ffd71b7da90f40d1f3126c00a0e5f0 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期一, 13 四月 2026 14:49:41 +0800
Subject: [PATCH] #站点运行优化

---
 src/main/java/com/zy/core/utils/station/StationRerouteProcessor.java |  339 ++++++++++++++++++++++++--------------------------------
 1 files changed, 146 insertions(+), 193 deletions(-)

diff --git a/src/main/java/com/zy/core/utils/station/StationRerouteProcessor.java b/src/main/java/com/zy/core/utils/station/StationRerouteProcessor.java
index 381aa84..dddde68 100644
--- a/src/main/java/com/zy/core/utils/station/StationRerouteProcessor.java
+++ b/src/main/java/com/zy/core/utils/station/StationRerouteProcessor.java
@@ -2,18 +2,18 @@
 
 import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSONObject;
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.core.common.Cools;
 import com.core.exception.CoolException;
 import com.zy.asrs.entity.BasDevp;
 import com.zy.asrs.entity.LocMast;
 import com.zy.asrs.entity.WrkMast;
-import com.zy.asrs.service.BasDevpService;
 import com.zy.asrs.service.LocMastService;
 import com.zy.asrs.service.WrkMastService;
 import com.zy.common.entity.FindCrnNoResult;
+import com.zy.common.model.NavigateNode;
 import com.zy.common.model.StartupDto;
 import com.zy.common.service.CommonService;
+import com.zy.common.utils.NavigateUtils;
 import com.zy.common.utils.RedisUtil;
 import com.zy.core.News;
 import com.zy.core.cache.SlaveConnection;
@@ -29,7 +29,6 @@
 import com.zy.core.model.protocol.StationProtocol;
 import com.zy.core.model.protocol.StationTaskBufferItem;
 import com.zy.core.move.StationMoveCoordinator;
-import com.zy.core.move.StationMoveSession;
 import com.zy.core.thread.StationThread;
 import com.zy.core.utils.station.model.OutOrderDispatchDecision;
 import com.zy.core.utils.station.model.RerouteCommandPlan;
@@ -42,6 +41,7 @@
 import org.springframework.stereotype.Component;
 
 import java.util.ArrayList;
+import java.util.Collections;
 import java.util.Date;
 import java.util.List;
 import java.util.Map;
@@ -50,12 +50,10 @@
 @Component
 public class StationRerouteProcessor {
     private static final int OUT_ORDER_DISPATCH_LIMIT_SECONDS = 2;
-    private static final int STATION_IDLE_RECOVER_SECONDS = 10;
-    private static final int STATION_IDLE_RECOVER_LIMIT_SECONDS = 30;
     private static final long STATION_MOVE_RESET_WAIT_MS = 1000L;
+    private static final int RUN_BLOCK_DIRECT_REASSIGN_LIMIT_SECONDS = 8 * 60;
+    private static final int RUN_BLOCK_DIRECT_REASSIGN_NEAREST_CACHE_SECONDS = 60 * 60 * 24;
 
-    @Autowired
-    private BasDevpService basDevpService;
     @Autowired
     private WrkMastService wrkMastService;
     @Autowired
@@ -74,6 +72,8 @@
     private StationOutboundDecisionSupport stationOutboundDecisionSupport;
     @Autowired
     private StationDispatchRuntimeStateSupport stationDispatchRuntimeStateSupport;
+    @Autowired
+    private NavigateUtils navigateUtils;
 
     public void checkStationRunBlock(BasDevp basDevp, Integer stationId) {
         try {
@@ -149,33 +149,6 @@
         }
     }
 
-    public void checkStationIdleRecover(BasDevp basDevp, Integer stationId) {
-        try {
-            if (basDevp == null || basDevp.getDevpNo() == null || stationId == null) {
-                return;
-            }
-            if (!isIdleRecoverCandidateStation(basDevp, stationId)) {
-                return;
-            }
-            StationThread stationThread = (StationThread) SlaveConnection.get(SlaveType.Devp, basDevp.getDevpNo());
-            if (stationThread == null) {
-                return;
-            }
-            Map<Integer, StationProtocol> statusMap = stationThread.getStatusMap();
-            StationProtocol stationProtocol = statusMap == null ? null : statusMap.get(stationId);
-            if (stationProtocol == null
-                    || !stationProtocol.isAutoing()
-                    || !stationProtocol.isLoading()
-                    || stationProtocol.getTaskNo() <= 0
-                    || stationProtocol.isRunBlock()) {
-                return;
-            }
-            checkStationIdleRecover(basDevp, stationThread, stationProtocol, basDevp.getOutOrderIntList());
-        } catch (Exception e) {
-            e.printStackTrace();
-        }
-    }
-
     public void checkStationOutOrder(BasDevp basDevp, StationObjModel stationObjModel) {
         try {
             if (basDevp == null || basDevp.getDevpNo() == null || stationObjModel == null || stationObjModel.getStationId() == null) {
@@ -218,51 +191,6 @@
                     "checkStationOutOrder"
             ).withDispatchDeviceNo(stationObjModel.getDeviceNo())
                     .withSuppressDispatchGuard()
-                    .withOutOrderDispatchLock()
-                    .withResetSegmentCommandsBeforeDispatch();
-            executeSharedReroute(context);
-        } catch (Exception e) {
-            e.printStackTrace();
-        }
-    }
-
-    public void watchCircleStation(BasDevp basDevp, Integer stationId) {
-        try {
-            if (basDevp == null || basDevp.getDevpNo() == null || stationId == null) {
-                return;
-            }
-            StationThread stationThread = (StationThread) SlaveConnection.get(SlaveType.Devp, basDevp.getDevpNo());
-            if (stationThread == null) {
-                return;
-            }
-            Map<Integer, StationProtocol> statusMap = stationThread.getStatusMap();
-            StationProtocol stationProtocol = statusMap == null ? null : statusMap.get(stationId);
-            if (stationProtocol == null
-                    || !stationProtocol.isAutoing()
-                    || !stationProtocol.isLoading()
-                    || stationProtocol.getTaskNo() <= 0
-                    || !stationOutboundDecisionSupport.isWatchingCircleArrival(stationProtocol.getTaskNo(), stationProtocol.getStationId())) {
-                return;
-            }
-
-            WrkMast wrkMast = wrkMastService.selectByWorkNo(stationProtocol.getTaskNo());
-            if (wrkMast == null
-                    || !Objects.equals(wrkMast.getWrkSts(), WrkStsType.STATION_RUN.sts)
-                    || Objects.equals(stationProtocol.getStationId(), wrkMast.getStaNo())) {
-                return;
-            }
-
-            Double pathLenFactor = stationOutboundDecisionSupport.resolveOutboundPathLenFactor(wrkMast);
-            RerouteContext context = RerouteContext.create(
-                    RerouteSceneType.WATCH_CIRCLE,
-                    basDevp,
-                    stationThread,
-                    stationProtocol,
-                    wrkMast,
-                    basDevp.getOutOrderIntList(),
-                    pathLenFactor,
-                    "watchCircleStation"
-            ).withSuppressDispatchGuard()
                     .withOutOrderDispatchLock()
                     .withResetSegmentCommandsBeforeDispatch();
             executeSharedReroute(context);
@@ -389,48 +317,141 @@
     public boolean shouldUseRunBlockDirectReassign(WrkMast wrkMast,
                                                    Integer stationId,
                                                    List<Integer> runBlockReassignLocStationList) {
-        return wrkMast != null
-                && Objects.equals(wrkMast.getIoType(), WrkIoType.IN.id)
-                && stationId != null
-                && runBlockReassignLocStationList != null
-                && runBlockReassignLocStationList.contains(stationId);
-    }
-
-    public boolean shouldSkipIdleRecoverForRecentDispatch(Integer taskNo, Integer stationId) {
-        if (taskNo == null || taskNo <= 0 || stationId == null) {
+        if (wrkMast == null || stationId == null) {
             return false;
         }
-        long thresholdMs = STATION_IDLE_RECOVER_SECONDS * 1000L;
-        StationMoveSession session = stationMoveCoordinator == null ? null : stationMoveCoordinator.loadSession(taskNo);
-        if (session != null && session.isActive() && session.getLastIssuedAt() != null) {
-            if (Objects.equals(stationId, session.getCurrentStationId())
-                    || Objects.equals(stationId, session.getDispatchStationId())
-                    || session.containsStation(stationId)) {
-                long elapsedMs = System.currentTimeMillis() - session.getLastIssuedAt();
-                if (elapsedMs < thresholdMs) {
-                    stationDispatchRuntimeStateSupport.saveIdleTrack(new StationTaskIdleTrack(taskNo, stationId, System.currentTimeMillis()));
-                    News.info("杈撻�佺珯鐐逛换鍔″垰瀹屾垚鍛戒护涓嬪彂锛屽凡璺宠繃鍋滅暀閲嶇畻銆傜珯鐐瑰彿={}锛屽伐浣滃彿={}锛岃窛涓婃涓嬪彂={}ms锛宺outeVersion={}",
-                            stationId, taskNo, elapsedMs, session.getRouteVersion());
-                    return true;
-                }
-            }
-        }
-        if (!stationDispatchRuntimeStateSupport.hasRecentIssuedMoveCommand(taskNo, stationId, thresholdMs)) {
+        if (!Objects.equals(wrkMast.getIoType(), WrkIoType.IN.id)) {
             return false;
         }
-        stationDispatchRuntimeStateSupport.saveIdleTrack(new StationTaskIdleTrack(taskNo, stationId, System.currentTimeMillis()));
-        News.info("杈撻�佺珯鐐逛换鍔″垰瀹屾垚鍛戒护涓嬪彂锛屽凡璺宠繃鍋滅暀閲嶇畻銆傜珯鐐瑰彿={}锛屽伐浣滃彿={}锛岃窛鏈�杩戝懡浠や笅鍙�<{}ms锛宺outeVersion={}",
-                stationId, taskNo, thresholdMs, session == null ? null : session.getRouteVersion());
+        if (runBlockReassignLocStationList == null || !runBlockReassignLocStationList.contains(stationId)) {
+            return false;
+        }
+        if (shouldForceRunBlockPathReroute(wrkMast, stationId, runBlockReassignLocStationList)) {
+            return false;
+        }
         return true;
     }
 
-    private boolean isIdleRecoverCandidateStation(BasDevp basDevp, Integer stationId) {
-        if (basDevp == null || stationId == null) {
+    private boolean shouldForceRunBlockPathReroute(WrkMast wrkMast,
+                                                   Integer stationId,
+                                                   List<Integer> runBlockReassignLocStationList) {
+        if (wrkMast == null || stationId == null) {
             return false;
         }
-        return !containsStation(basDevp.getBarcodeStationList$(), stationId)
-                && !containsStation(basDevp.getInStationList$(), stationId)
-                && !containsStation(basDevp.getOutStationList$(), stationId);
+        Integer nearestStationId = resolveNearestRunBlockDirectReassignStationId(wrkMast, runBlockReassignLocStationList);
+        return nearestStationId != null && !Objects.equals(stationId, nearestStationId);
+    }
+
+    private Integer resolveNearestRunBlockDirectReassignStationId(WrkMast wrkMast,
+                                                                  List<Integer> runBlockReassignLocStationList) {
+        if (wrkMast == null
+                || wrkMast.getStaNo() == null
+                || navigateUtils == null
+                || runBlockReassignLocStationList == null
+                || runBlockReassignLocStationList.isEmpty()) {
+            return null;
+        }
+        Integer targetStationId = wrkMast.getStaNo();
+        Integer cachedStationId = loadCachedNearestRunBlockDirectReassignStationId(targetStationId, runBlockReassignLocStationList);
+        if (cachedStationId != null) {
+            return cachedStationId;
+        }
+        Integer nearestStationId = null;
+        int nearestPathLen = Integer.MAX_VALUE;
+        for (Integer candidateStationId : runBlockReassignLocStationList) {
+            if (candidateStationId == null) {
+                continue;
+            }
+            List<NavigateNode> path = navigateUtils.calcOptimalPathByStationId(candidateStationId, targetStationId, wrkMast.getWrkNo(), null);
+            if (path == null || path.isEmpty()) {
+                continue;
+            }
+            int pathLen = countStationNodes(path);
+            if (pathLen <= 0) {
+                continue;
+            }
+            if (pathLen < nearestPathLen
+                    || (pathLen == nearestPathLen && nearestStationId != null && candidateStationId < nearestStationId)) {
+                nearestStationId = candidateStationId;
+                nearestPathLen = pathLen;
+            }
+        }
+        cacheNearestRunBlockDirectReassignStationId(targetStationId, runBlockReassignLocStationList, nearestStationId);
+        return nearestStationId;
+    }
+
+    private Integer loadCachedNearestRunBlockDirectReassignStationId(Integer targetStationId,
+                                                                     List<Integer> runBlockReassignLocStationList) {
+        String cacheKey = buildNearestRunBlockDirectReassignCacheKey(targetStationId, runBlockReassignLocStationList);
+        if (cacheKey == null || redisUtil == null) {
+            return null;
+        }
+        Object cacheValue = redisUtil.get(cacheKey);
+        if (cacheValue == null) {
+            return null;
+        }
+        try {
+            Integer stationId = Integer.valueOf(String.valueOf(cacheValue));
+            return runBlockReassignLocStationList.contains(stationId) ? stationId : null;
+        } catch (Exception ignore) {
+            return null;
+        }
+    }
+
+    private void cacheNearestRunBlockDirectReassignStationId(Integer targetStationId,
+                                                             List<Integer> runBlockReassignLocStationList,
+                                                             Integer nearestStationId) {
+        String cacheKey = buildNearestRunBlockDirectReassignCacheKey(targetStationId, runBlockReassignLocStationList);
+        if (cacheKey == null || nearestStationId == null || redisUtil == null) {
+            return;
+        }
+        redisUtil.set(cacheKey, nearestStationId, RUN_BLOCK_DIRECT_REASSIGN_NEAREST_CACHE_SECONDS);
+    }
+
+    private String buildNearestRunBlockDirectReassignCacheKey(Integer targetStationId,
+                                                              List<Integer> runBlockReassignLocStationList) {
+        if (targetStationId == null || runBlockReassignLocStationList == null || runBlockReassignLocStationList.isEmpty()) {
+            return null;
+        }
+        List<Integer> normalizedStationIdList = new ArrayList<>();
+        for (Integer stationId : runBlockReassignLocStationList) {
+            if (stationId != null && !normalizedStationIdList.contains(stationId)) {
+                normalizedStationIdList.add(stationId);
+            }
+        }
+        if (normalizedStationIdList.isEmpty()) {
+            return null;
+        }
+        Collections.sort(normalizedStationIdList);
+        return RedisKeyType.STATION_RUN_BLOCK_DIRECT_REASSIGN_NEAREST_CACHE_.key
+                + targetStationId
+                + "_"
+                + JSON.toJSONString(normalizedStationIdList);
+    }
+
+    private int countStationNodes(List<NavigateNode> path) {
+        if (path == null || path.isEmpty()) {
+            return 0;
+        }
+        int count = 0;
+        for (NavigateNode node : path) {
+            if (extractStationId(node) != null) {
+                count++;
+            }
+        }
+        return count;
+    }
+
+    private Integer extractStationId(NavigateNode node) {
+        if (node == null || Cools.isEmpty(node.getNodeValue())) {
+            return null;
+        }
+        try {
+            JSONObject valueObject = JSONObject.parseObject(node.getNodeValue());
+            return valueObject == null ? null : valueObject.getInteger("stationId");
+        } catch (Exception ignore) {
+            return null;
+        }
     }
 
     private boolean shouldSkipRunBlockStation(BasDevp basDevp, Integer stationId) {
@@ -459,18 +480,8 @@
                                                                   Integer taskNo,
                                                                   Integer stationId) {
         boolean runBlockReroute = context.sceneType() == RerouteSceneType.RUN_BLOCK_REROUTE;
-        if (context.checkRecentDispatch()
-                && shouldSkipIdleRecoverForRecentDispatch(taskNo, stationId)) {
-            return RerouteExecutionResult.skip("recent-dispatch");
-        }
         int currentTaskBufferCommandCount = countCurrentTaskBufferCommands(stationProtocol.getTaskBufferItems(), taskNo);
         if (currentTaskBufferCommandCount > 0 && !runBlockReroute) {
-            if (context.sceneType() == RerouteSceneType.IDLE_RECOVER) {
-                News.info("杈撻�佺珯鐐逛换鍔″仠鐣欒秴鏃讹紝浣嗙紦瀛樺尯浠嶅瓨鍦ㄥ綋鍓嶄换鍔″懡浠わ紝宸茶烦杩囬噸绠椼�傜珯鐐瑰彿={}锛屽伐浣滃彿={}锛屽綋鍓嶄换鍔″懡浠ゆ暟={}",
-                        stationId,
-                        taskNo,
-                        currentTaskBufferCommandCount);
-            }
             return RerouteExecutionResult.skip("buffer-has-current-task");
         }
         if (currentTaskBufferCommandCount > 0 && runBlockReroute) {
@@ -499,9 +510,6 @@
         }
 
         int clearedCommandCount = 0;
-        if (context.clearIdleIssuedCommands()) {
-            clearedCommandCount = stationDispatchRuntimeStateSupport.clearIssuedMoveCommandsDuringIdleStay(context.idleTrack(), taskNo, stationId);
-        }
 
         boolean offered = offerDevpCommandWithDedup(context.dispatchDeviceNo(), plan.command(), plan.dispatchScene());
         if (!offered) {
@@ -552,17 +560,6 @@
                     dispatchDecision != null && dispatchDecision.isCircle()
             );
         }
-        if (context.sceneType() == RerouteSceneType.IDLE_RECOVER) {
-            stationDispatchRuntimeStateSupport.saveIdleTrack(new StationTaskIdleTrack(wrkMast.getWrkNo(), stationProtocol.getStationId(), System.currentTimeMillis()));
-            News.info("杈撻�佺珯鐐逛换鍔″仠鐣檣}绉掓湭杩愯锛屽凡閲嶆柊璁$畻璺緞骞堕噸鍚繍琛岋紝绔欑偣鍙�={}锛岀洰鏍囩珯={}锛屽伐浣滃彿={}锛屾竻鐞嗘棫鍒嗘鍛戒护鏁�={}锛屽懡浠ゆ暟鎹�={}",
-                    STATION_IDLE_RECOVER_SECONDS,
-                    stationProtocol.getStationId(),
-                    plan.command().getTargetStaNo(),
-                    wrkMast.getWrkNo(),
-                    clearedCommandCount,
-                    JSON.toJSONString(plan.command()));
-            return;
-        }
         if (context.sceneType() == RerouteSceneType.RUN_BLOCK_REROUTE) {
             News.info("杈撻�佺珯鐐瑰牭濉炲悗閲嶆柊璁$畻璺緞鍛戒护涓嬪彂鎴愬姛锛岀珯鐐瑰彿={}锛屽伐浣滃彿={}锛屽懡浠ゆ暟鎹�={}",
                     stationProtocol.getStationId(),
@@ -573,51 +570,6 @@
         if (context.sceneType() == RerouteSceneType.OUT_ORDER) {
             News.info(dispatchDecision != null && dispatchDecision.isCircle() ? "{}浠诲姟杩涜缁曞湀" : "{}浠诲姟鐩存帴鍘荤洰鏍囩偣", wrkMast.getWrkNo());
         }
-    }
-
-    private void checkStationIdleRecover(BasDevp basDevp,
-                                         StationThread stationThread,
-                                         StationProtocol stationProtocol,
-                                         List<Integer> outOrderList) {
-        if (stationProtocol == null || stationProtocol.getTaskNo() == null || stationProtocol.getTaskNo() <= 0) {
-            return;
-        }
-        if (!Objects.equals(stationProtocol.getStationId(), stationProtocol.getTargetStaNo())) {
-            return;
-        }
-
-        StationTaskIdleTrack idleTrack = stationDispatchRuntimeStateSupport.touchIdleTrack(stationProtocol.getTaskNo(), stationProtocol.getStationId());
-        if (shouldSkipIdleRecoverForRecentDispatch(stationProtocol.getTaskNo(), stationProtocol.getStationId())) {
-            return;
-        }
-        if (idleTrack == null || !idleTrack.isTimeout(STATION_IDLE_RECOVER_SECONDS)) {
-            return;
-        }
-
-        WrkMast wrkMast = wrkMastService.selectByWorkNo(stationProtocol.getTaskNo());
-        if (!canRecoverIdleStationTask(wrkMast, stationProtocol.getStationId())) {
-            return;
-        }
-
-        Object lock = redisUtil.get(RedisKeyType.CHECK_STATION_IDLE_RECOVER_LIMIT_.key + stationProtocol.getTaskNo());
-        if (lock != null) {
-            return;
-        }
-        Double pathLenFactor = stationOutboundDecisionSupport.resolveOutboundPathLenFactor(wrkMast);
-        RerouteContext context = RerouteContext.create(
-                RerouteSceneType.IDLE_RECOVER,
-                basDevp,
-                stationThread,
-                stationProtocol,
-                wrkMast,
-                outOrderList,
-                pathLenFactor,
-                "checkStationIdleRecover"
-        ).withCancelSessionBeforeDispatch()
-                .withExecutionLock(RedisKeyType.CHECK_STATION_IDLE_RECOVER_LIMIT_.key + stationProtocol.getTaskNo(), STATION_IDLE_RECOVER_LIMIT_SECONDS)
-                .withResetSegmentCommandsBeforeDispatch()
-                .clearIdleIssuedCommands(idleTrack);
-        executeSharedReroute(context);
     }
 
     private void executeRunBlockDirectReassign(BasDevp basDevp,
@@ -632,10 +584,17 @@
                 stationProtocol.getTaskNo()
         );
         if (currentTaskBufferCommandCount > 0) {
-            News.info("杈撻�佺珯鐐硅繍琛屽牭濉為噸鍒嗛厤宸茶烦杩囷紝缂撳瓨鍖轰粛瀛樺湪褰撳墠浠诲姟鍛戒护銆傜珯鐐瑰彿={}锛屽伐浣滃彿={}锛屽綋鍓嶄换鍔″懡浠ゆ暟={}",
+            News.info("杈撻�佺珯鐐硅繍琛屽牭濉為噸鍒嗛厤妫�娴嬪埌鏃у垎娈靛懡浠ゆ畫鐣欙紝灏嗗厛閲嶇疆鏈湴鍒嗘鐘舵�佸悗缁х画閲嶅彂銆傜珯鐐瑰彿={}锛屽伐浣滃彿={}锛屽綋鍓嶄换鍔″懡浠ゆ暟={}",
                     stationProtocol.getStationId(),
                     stationProtocol.getTaskNo(),
                     currentTaskBufferCommandCount);
+        }
+        if (stationDispatchRuntimeStateSupport.hasRunBlockDirectReassignLimit(
+                wrkMast.getWrkNo(),
+                stationProtocol.getStationId())) {
+            News.info("杈撻�佺珯鐐硅繍琛屽牭濉為噸鍒嗛厤宸茶烦杩囷紝8鍒嗛挓鍐呬笉鍏佽閲嶅鐢宠銆傜珯鐐瑰彿={}锛屽伐浣滃彿={}",
+                    stationProtocol.getStationId(),
+                    wrkMast.getWrkNo());
             return;
         }
         String response = wmsOperateUtils.applyReassignTaskLocNo(wrkMast.getWrkNo(), stationProtocol.getStationId());
@@ -714,6 +673,11 @@
         if (!wrkMastService.updateById(wrkMast)) {
             return;
         }
+        stationDispatchRuntimeStateSupport.recordRunBlockDirectReassignLimit(
+                wrkMast.getWrkNo(),
+                stationProtocol.getStationId(),
+                RUN_BLOCK_DIRECT_REASSIGN_LIMIT_SECONDS);
+        stationDispatchRuntimeStateSupport.signalSegmentReset(wrkMast.getWrkNo(), STATION_MOVE_RESET_WAIT_MS);
         boolean offered = offerDevpCommandWithDedup(basDevp.getDevpNo(), command, "checkStationRunBlock_direct");
         if (!offered) {
             return;
@@ -729,17 +693,6 @@
                     false
             );
         }
-    }
-
-    private boolean canRecoverIdleStationTask(WrkMast wrkMast, Integer currentStationId) {
-        if (wrkMast == null || currentStationId == null || wrkMast.getStaNo() == null) {
-            return false;
-        }
-        if (Objects.equals(currentStationId, wrkMast.getStaNo())) {
-            return false;
-        }
-        return Objects.equals(wrkMast.getWrkSts(), WrkStsType.INBOUND_STATION_RUN.sts)
-                || Objects.equals(wrkMast.getWrkSts(), WrkStsType.STATION_RUN.sts);
     }
 
     private int countCurrentTaskBufferCommands(List<StationTaskBufferItem> taskBufferItems, Integer currentTaskNo) {

--
Gitblit v1.9.1