自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-07-08 da197adeb3fe32e90a9625b5cf2cb0097a3a00d9
src/main/java/com/zy/asrs/task/WorkLogScheduler.java
@@ -1,8 +1,11 @@
package com.zy.asrs.task;
import com.zy.asrs.entity.WrkMast;
import com.zy.asrs.service.WrkMastService;
import com.zy.asrs.task.core.ReturnT;
import com.zy.asrs.task.handler.WorkLogHandler;
import com.zy.system.entity.Config;
import com.zy.system.service.ConfigService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@@ -13,16 +16,22 @@
@Component
public class WorkLogScheduler {
    private static final Logger log = LoggerFactory.getLogger(WorkLogScheduler.class);
    @Autowired
    private WorkLogHandler workLogHandler;
    @Autowired
    private ConfigService configService;
    private WrkMastService wrkMastService;
    @Scheduled(cron = "0/3 * * * * ? ")
    private void execute(){
        ReturnT<Config> result = workLogHandler.start();
        WrkMast wrkMast = wrkMastService.selectToBeHistoryData();
        if (null == wrkMast) {
            return;
        }
        ReturnT<String> result = workLogHandler.start(wrkMast);
        if (!result.isSuccess()) {
            configService.insert(result.getContent());
            log.error("工作档[workNo={}]历史档处理失败", wrkMast.getWrkNo());
        }
    }