自动化立体仓库 - WMS系统
pang.jiabao
2025-11-11 e48d9b581488d41e49f80d63d39038a89e6a2829
src/main/java/com/zy/asrs/task/OrderSyncScheduler.java
@@ -37,17 +37,6 @@
    @Autowired
    private LoadingConfigTimer loadingConfigTimer;
    @Scheduled(cron = "0 0 1 * * ? ")
    public void clearApiLog() {
        try {
            apiLogService.clearWeekBefore();
        } catch (Exception e) {
            log.error("第三方接口日志自动清除失败(范围:一周之前", e);
        }
    }
    @Scheduled(cron = "0/30 * * * * ? ")
    @Async("orderThreadPool")
    public void completeOrderPakin() {
@@ -67,7 +56,6 @@
        }
    }
    @Scheduled(cron = "0/30 * * * * ? ")
    @Async("orderThreadPool")
    public void completeOrderPakout() {
@@ -86,4 +74,14 @@
            }
        }
    }
    @Scheduled(cron = "0 0 1 * * ? ")
    public void clearApiLog() {
        try {
            apiLogService.clearWeekBefore();
        } catch (Exception e) {
            log.error("第三方接口日志自动清除失败(范围:一周之前", e);
        }
    }
}