From c19cf2f4c2419e403294ebdc025fe90ff7dee74c Mon Sep 17 00:00:00 2001 From: zhangc <zc@123> Date: 星期四, 13 三月 2025 14:28:48 +0800 Subject: [PATCH] 配置信息 --- src/main/java/com/zy/asrs/task/TaskLogScheduler.java | 79 +++++++++++++++++---------------------- 1 files changed, 34 insertions(+), 45 deletions(-) diff --git a/src/main/java/com/zy/asrs/task/TaskLogScheduler.java b/src/main/java/com/zy/asrs/task/TaskLogScheduler.java index 8463ff2..8ea8636 100644 --- a/src/main/java/com/zy/asrs/task/TaskLogScheduler.java +++ b/src/main/java/com/zy/asrs/task/TaskLogScheduler.java @@ -1,17 +1,13 @@ package com.zy.asrs.task; -import com.alibaba.fastjson.JSON; -import com.alibaba.fastjson.JSONObject; -import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.core.exception.CoolException; -import com.zy.asrs.domain.enums.TaskStatusType; -import com.zy.asrs.entity.*; -import com.zy.asrs.entity.param.TaskOverToWms; -import com.zy.asrs.entity.param.TaskStatusFeedbackParam; -import com.zy.asrs.service.*; +import com.zy.asrs.entity.TaskWrk; +import com.zy.asrs.entity.TaskWrkLog; +import com.zy.asrs.entity.TaskWrkReport; +import com.zy.asrs.service.TaskWrkReportService; +import com.zy.asrs.service.TaskWrkService; import com.zy.asrs.service.impl.TaskWrkLogServiceImpl; -import com.zy.asrs.utils.PostMesDataUtils; -import com.zy.common.utils.HttpHandler; +import com.zy.common.utils.Synchro; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; @@ -19,10 +15,6 @@ import org.springframework.stereotype.Component; import java.io.IOException; -import java.util.Date; -import java.util.HashMap; -import java.util.List; -import java.util.Map; /** * 瀹氭椂灏嗕换鍔�(瀹屾垚銆佸彇娑�)杞垚鏃ュ織 @@ -33,47 +25,44 @@ @Autowired private TaskWrkService taskWrkService; - @Autowired - private CommandInfoService commandInfoService; - @Autowired - private ApiLogService apiLogService; - @Autowired - private BasDevpService basDevpService; - @Autowired - private StaDescService staDescService; - @Autowired - private LocMastService locMastService; @Autowired private TaskWrkLogServiceImpl wrkLogService; + + @Autowired + private TaskWrkReportService taskWrkReportService; + @Value("${wms.url}") private String wmsUrl; - @Value("${wms.movePath}") - private String movePath; + + @Value("${wms.TaskExecCallback}") + private String TaskExecCallback; + @Scheduled(cron = "0/3 * * * * ? ") public void execute() throws IOException { - for (TaskWrk taskWrk : taskWrkService.selectToBeHistoryData()) { - if (taskWrk.getStatus().equals(TaskStatusType.OVER.id)||taskWrk.getStatus()==7) {//瀹屾垚 - //鍖哄垎鍏ュ嚭搴� - TaskWrkLog taskWrkLog = new TaskWrkLog(taskWrk); - if (!wrkLogService.insert(taskWrkLog)) { - throw new CoolException("杞巻鍙叉。澶辫触" + taskWrkLog); - } - if (!taskWrkService.deleteById(taskWrk)) { - throw new CoolException("浠诲姟妗e垹闄ゅけ璐�" + taskWrkLog); - } - } else if (taskWrk.getStatus().equals(TaskStatusType.CANCEL.id)) { - TaskWrkLog taskWrkLog=new TaskWrkLog(taskWrk); - if(!wrkLogService.insert(taskWrkLog)){ - throw new CoolException("杞巻鍙叉。澶辫触"+taskWrkLog); - } - if(!taskWrkService.deleteById(taskWrk)){ - throw new CoolException("浠诲姟妗e垹闄ゅけ璐�"+taskWrkLog); - } - } + for (TaskWrk taskWrk : taskWrkService.selectToBeHistoryData()) { + switch (taskWrk.getStatus()) { + case 4: + break; + case 5: + break; + } + TaskWrkReport taskWrkReport = new TaskWrkReport(); + TaskWrkLog taskWrkLog = new TaskWrkLog(); + Synchro.Copy(taskWrk, taskWrkReport); + Synchro.Copy(taskWrk, taskWrkLog); + if (!taskWrkReportService.insert(taskWrkReport)) { + throw new CoolException("杞Щ鑷充笂鎶ヨ〃" + taskWrk); + } + if (!wrkLogService.insert(taskWrkLog)) { + throw new CoolException("杞巻鍙叉。澶辫触" + taskWrk); + } + if (!taskWrkService.deleteById(taskWrk)) { + throw new CoolException("浠诲姟妗e垹闄ゅけ璐�" + taskWrk); + } } } -- Gitblit v1.9.1