自动化立体仓库 - WMS系统
#1
dubin
2025-12-17 96c5a749f14c3dea75ff774e5eed2921ba0f2555
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++;
            }