自动化立体仓库 - WMS系统
lty
2025-03-10 bf81b6e3600a49cb8621cd798db9aa521956bc6e
src/main/java/com/zy/asrs/task/WCSReportScheduler.java
@@ -28,7 +28,7 @@
    /**
     * 下发任务给WCS
     */
    @Scheduled(cron = "0/3 * * * * ? ")
//    @Scheduled(cron = "0/3 * * * * ? ")
    public  void execute (){
        if (!workIssuedFig){
            return;
@@ -36,7 +36,7 @@
        List<WrkMast> wrkMastList=wrkMastService.selectList(new EntityWrapper<WrkMast>());
        int i=1;
        for(WrkMast wrkMast:wrkMastList){
            if (wrkMast.getWrkSts()==0){
            if (wrkMast.getWrkSts() == 0 || wrkMast.getWrkSts() == 14){
                wcsReportHandler.start(wrkMast,i);
                i++;
            }