自动化立体仓库 - WCS系统
#
yxFwq
2024-11-28 263de79f85d11630bf24364de499218f1ff8ff21
src/main/java/com/zy/asrs/task/ScaleEscalationScheduler.java
@@ -41,19 +41,4 @@
        }
    }
    @Scheduled(cron = "0/3 * * * * ? ")
    private void executeOverturn(){//2楼翻转倒料后回库标记清除
        int[] staNos =new int[]{126,131,310,312};
        for (int staNo : staNos){
            try{
                ReturnT<String> result = scaleEscalationHandler.start2(staNo);
                if (result.getCode()==200){
                    break;
                }
            }catch (Exception e){
                log.error("站点"+staNo+"2楼翻转倒料信息上传处理失败,异常信息:"+e);
            }
        }
    }
}