|
|
|
@ -1,14 +1,12 @@
|
|
|
|
|
package com.op.device.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
|
|
import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
|
|
|
|
|
import com.op.common.core.context.SecurityContextHolder;
|
|
|
|
|
import com.op.common.core.domain.R;
|
|
|
|
|
import com.op.common.core.utils.DateUtils;
|
|
|
|
|
import com.op.common.core.utils.StringUtils;
|
|
|
|
|
import com.op.common.core.utils.uuid.IdUtils;
|
|
|
|
|
import com.op.common.core.web.domain.AjaxResult;
|
|
|
|
|
import com.op.common.security.utils.SecurityUtils;
|
|
|
|
|
import com.op.device.domain.*;
|
|
|
|
|
import com.op.device.mapper.*;
|
|
|
|
|
import com.op.device.service.IDeviceTaskService;
|
|
|
|
@ -19,18 +17,15 @@ import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
|
|
|
|
import java.time.LocalDate;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
|
|
import java.util.concurrent.LinkedBlockingQueue;
|
|
|
|
|
import java.util.concurrent.ThreadPoolExecutor;
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
import static com.op.common.core.web.domain.AjaxResult.error;
|
|
|
|
|
import static com.op.common.core.web.domain.AjaxResult.success;
|
|
|
|
@ -253,8 +248,9 @@ public class DeviceTaskServiceImpl implements IDeviceTaskService {
|
|
|
|
|
EquPlan equPlan = new EquPlan();
|
|
|
|
|
equPlan.setPlanType("spotInspection");
|
|
|
|
|
List<EquPlan> plans = deviceTaskMapper.getPlans(equPlan);
|
|
|
|
|
List<EquPlan> producePlans = this.confirmPlanProduceLine(plans,poolName);
|
|
|
|
|
|
|
|
|
|
for (EquPlan plan : plans) {
|
|
|
|
|
for (EquPlan plan : producePlans) {
|
|
|
|
|
EquOrder hasTask = deviceTaskMapper.getNewTaskOrder(plan);
|
|
|
|
|
if (hasTask == null || Integer.parseInt(plan.getPlanLoop()) <= hasTask.getDays() || checkHourTask(hasTask, plan)) {
|
|
|
|
|
//生成点检计划
|
|
|
|
@ -560,4 +556,48 @@ public class DeviceTaskServiceImpl implements IDeviceTaskService {
|
|
|
|
|
System.out.println("------>" + batchCount);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//筛选出 当天要计划生成的数据
|
|
|
|
|
private List<EquPlan> confirmPlanProduceLine(List<EquPlan> plans,String poolName) {
|
|
|
|
|
//查询到当天要生产的产线
|
|
|
|
|
List<String> planProduceLine = deviceTaskMapper.getPlanProduceLine();//计划生产产线
|
|
|
|
|
List<String> planProduceLineCode = new ArrayList<>();
|
|
|
|
|
List<String> produceLine = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
for(String str : planProduceLine){
|
|
|
|
|
str = str.substring(1, str.length() - 1);
|
|
|
|
|
String[] subArrays = str.split("],\\[");
|
|
|
|
|
for (String subArrayStr : subArrays) {
|
|
|
|
|
subArrayStr = subArrayStr.substring(1, subArrayStr.length() - 1);
|
|
|
|
|
String[] parts = subArrayStr.split("\",\"");
|
|
|
|
|
for (int i = 1 ; i < parts.length ; i++) {
|
|
|
|
|
if(i == parts.length - 1){
|
|
|
|
|
planProduceLineCode.add(parts[i].replaceAll("\"", ""));
|
|
|
|
|
}else{
|
|
|
|
|
planProduceLineCode.add(parts[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<String> uniqueLineCodeList = planProduceLineCode.stream().distinct().collect(Collectors.toList());
|
|
|
|
|
List<EquPlan> returnPlanList = new ArrayList<>();
|
|
|
|
|
if(!CollectionUtils.isEmpty(uniqueLineCodeList) && !CollectionUtils.isEmpty(plans)){
|
|
|
|
|
for(String lineCode : uniqueLineCodeList){
|
|
|
|
|
for(EquPlan equPlan : plans){
|
|
|
|
|
if(!StringUtils.isBlank(equPlan.getLineCode())){
|
|
|
|
|
if(equPlan.getLineCode().equals(lineCode)){
|
|
|
|
|
returnPlanList.add(equPlan);
|
|
|
|
|
produceLine.add(lineCode);//生成产线
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
produceLine = produceLine.stream().distinct().collect(Collectors.toList());
|
|
|
|
|
logger.info(poolName + "工厂今日生成的产线:" + JSONArray.toJSONString(produceLine));
|
|
|
|
|
logger.info(poolName + "工厂返回生成今日生产的产线点检计划信息:" + JSONArray.toJSONString(returnPlanList));
|
|
|
|
|
return returnPlanList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|