|
|
|
@ -2,9 +2,17 @@ package com.op.quality.service.impl;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
|
|
import java.util.concurrent.LinkedBlockingQueue;
|
|
|
|
|
import java.util.concurrent.ThreadPoolExecutor;
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.date.DateUnit;
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
|
|
|
import com.baomidou.dynamic.datasource.toolkit.DynamicDataSourceContextHolder;
|
|
|
|
|
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;
|
|
|
|
@ -14,18 +22,24 @@ import com.op.quality.domain.*;
|
|
|
|
|
import com.op.quality.mapper.QcCheckTaskDetailMapper;
|
|
|
|
|
import com.op.quality.mapper.QcCheckTypeProjectMapper;
|
|
|
|
|
import com.op.quality.mapper.QcMaterialGroupDetailMapper;
|
|
|
|
|
import com.op.system.api.RemoteUserService;
|
|
|
|
|
import com.op.system.api.domain.SysUser;
|
|
|
|
|
import com.op.system.api.domain.mes.ProOrderWorkorderDTO;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
import com.op.quality.mapper.QcCheckTaskProduceMapper;
|
|
|
|
|
import com.op.quality.service.IQcCheckTaskProduceService;
|
|
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
import org.springframework.web.bind.annotation.PutMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
import org.springframework.web.context.request.RequestContextHolder;
|
|
|
|
|
import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
|
|
|
|
|
import static com.op.common.core.web.domain.AjaxResult.error;
|
|
|
|
|
import static com.op.common.core.web.domain.AjaxResult.success;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生产过程检验任务Service业务层处理
|
|
|
|
|
*
|
|
|
|
@ -34,6 +48,7 @@ import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
*/
|
|
|
|
|
@Service
|
|
|
|
|
public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService {
|
|
|
|
|
protected Logger logger = LoggerFactory.getLogger(getClass());
|
|
|
|
|
@Autowired
|
|
|
|
|
private QcCheckTaskProduceMapper qcCheckTaskProduceMapper;
|
|
|
|
|
|
|
|
|
@ -45,6 +60,8 @@ public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private QcCheckTaskDetailMapper qcCheckTaskDetailMapper;
|
|
|
|
|
@Autowired
|
|
|
|
|
private RemoteUserService remoteUserService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询生产过程检验任务
|
|
|
|
@ -81,8 +98,15 @@ public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
public int insertQcCheckTaskProduce(QcCheckTaskProduce qcCheckTaskProduce) {
|
|
|
|
|
String factoryCode = "";
|
|
|
|
|
if(StringUtils.isNotBlank(qcCheckTaskProduce.getFactoryCode())){
|
|
|
|
|
DynamicDataSourceContextHolder.push("ds_"+qcCheckTaskProduce.getFactoryCode());
|
|
|
|
|
factoryCode= qcCheckTaskProduce.getFactoryCode();
|
|
|
|
|
}else{
|
|
|
|
|
//获取当前所选工厂
|
|
|
|
|
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
|
|
|
|
|
String key = "#header.poolName";
|
|
|
|
|
factoryCode = request.getHeader(key.substring(8)).replace("ds_","");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
qcCheckTaskProduce.setCreateTime(DateUtils.getNowDate());
|
|
|
|
@ -93,10 +117,6 @@ public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService
|
|
|
|
|
|
|
|
|
|
String createBy = SecurityUtils.getUsername();
|
|
|
|
|
Date nowDate= DateUtils.getNowDate();
|
|
|
|
|
//获取当前所选工厂
|
|
|
|
|
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
|
|
|
|
|
String key = "#header.poolName";
|
|
|
|
|
String factoryCode = request.getHeader(key.substring(8)).replace("ds_","");
|
|
|
|
|
|
|
|
|
|
qcCheckTaskProduce.setCheckNo(bpDD+liushuiStr);
|
|
|
|
|
|
|
|
|
@ -197,4 +217,53 @@ public class QcCheckTaskProduceServiceImpl implements IQcCheckTaskProduceService
|
|
|
|
|
return qcCheckTaskProduceMapper.updateQcCheckTaskProduce(qcCheckTaskProduce);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public AjaxResult createProduceXJTask() {
|
|
|
|
|
|
|
|
|
|
// 加载sf-cloud库的sys_datasource
|
|
|
|
|
SysUser sysUser = new SysUser();
|
|
|
|
|
sysUser.setUserId(1L);
|
|
|
|
|
R<List<Map<String, String>>> dateSources0 = remoteUserService.getPoolNameList(sysUser);
|
|
|
|
|
List<Map<String, String>> dateSources = dateSources0.getData();
|
|
|
|
|
ExecutorService executorService = new ThreadPoolExecutor(
|
|
|
|
|
dateSources.size(),
|
|
|
|
|
dateSources.size(),
|
|
|
|
|
0L, TimeUnit.MILLISECONDS,
|
|
|
|
|
new LinkedBlockingQueue<Runnable>());
|
|
|
|
|
try {
|
|
|
|
|
dateSources.forEach(dateSource -> {
|
|
|
|
|
if("ds_1000".equals(dateSource.get("poolName"))){
|
|
|
|
|
logger.info("++++++++++++" + dateSource.get("poolName") + "++++过程检验巡检开始++++++++++");
|
|
|
|
|
Runnable run = () -> createProduceXJFunc(dateSource.get("poolName"));
|
|
|
|
|
executorService.execute(run);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error("service == createProduceXJTask == exception", e);
|
|
|
|
|
return error("service == createProduceXJTask == exception");
|
|
|
|
|
} finally {
|
|
|
|
|
executorService.shutdown();
|
|
|
|
|
}
|
|
|
|
|
return success();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
public void createProduceXJFunc(String poolName){
|
|
|
|
|
DynamicDataSourceContextHolder.push(poolName);// 这是数据源的key
|
|
|
|
|
ProOrderWorkorderDTO qoWork = new ProOrderWorkorderDTO();
|
|
|
|
|
qoWork.setStatus("w2");
|
|
|
|
|
List<QcCheckTaskProduce> works = qcCheckTaskProduceMapper.getOrderWorks(qoWork);
|
|
|
|
|
for(QcCheckTaskProduce productTask:works){
|
|
|
|
|
productTask.setCheckType("checkTypeSCXJ");//过程检验-巡检
|
|
|
|
|
Date nowTime = DateUtils.getNowDate();
|
|
|
|
|
Date startTime = productTask.getCreateTime();
|
|
|
|
|
|
|
|
|
|
long mins = DateUtil.between(startTime, nowTime, DateUnit.MINUTE);
|
|
|
|
|
if(mins>=15){
|
|
|
|
|
int m = insertQcCheckTaskProduce(productTask);
|
|
|
|
|
logger.info("++++++++++++过程检验巡检任务生成" + m + "++++++++++++++");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
logger.info("++++++++++++" + poolName + "++++过程检验巡检结束++++++++++");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|