#
Junjie
19 小时以前 afbb4fd6f5b3d0fc3f0404b8c4c916fc56c3833d
src/main/java/com/zy/common/utils/NavigateUtils.java
@@ -626,14 +626,17 @@
        Integer currentStationId = extractStationId(currentNode);
        Integer endStationId = extractStationId(endNode);
        if (nextStationId != null && !nextStationId.equals(endStationId)) {
            if (context.forbidStationIdSet.contains(nextStationId)) {
                return false;
            }
        if (nextStationId != null) {
            StationProtocol protocol = context.statusMap.get(nextStationId);
            if (protocol != null && !protocol.isAutoing()) {
                return false;
            }
        }
        if (nextStationId != null && !nextStationId.equals(endStationId)) {
            if (context.forbidStationIdSet.contains(nextStationId)) {
                return false;
            }
            if (context.globalPolicy.forceSkipPassOtherOutStation
                    && context.outStationIdSet.contains(nextStationId)
                    && !nextStationId.equals(context.startStationId)