|
|
|
@ -1,12 +1,16 @@
|
|
|
|
|
package com.xisc.pm.api.controller.v1;
|
|
|
|
|
|
|
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
|
import com.google.ortools.Loader;
|
|
|
|
|
import com.xisc.pm.api.dto.PmPdRecDTO;
|
|
|
|
|
import com.xisc.pm.api.dto.PmProContFilterResposeDTO;
|
|
|
|
|
import com.xisc.pm.api.dto.PmProductionPlanReqDTO;
|
|
|
|
|
import com.xisc.pm.api.dto.QdMatchParamDTO;
|
|
|
|
|
import com.xisc.pm.api.dto.QdSurplusLowMagnificationDTO;
|
|
|
|
|
import com.xisc.pm.api.dto.model.*;
|
|
|
|
|
import com.xisc.pm.domain.entity.*;
|
|
|
|
|
import com.xisc.pm.domain.vo.util.JsonData;
|
|
|
|
|
import com.xisc.pm.infra.client.QdOrderClient;
|
|
|
|
|
import io.choerodon.core.iam.ResourceLevel;
|
|
|
|
|
import io.choerodon.core.oauth.CustomUserDetails;
|
|
|
|
|
import io.choerodon.core.oauth.DetailsHelper;
|
|
|
|
@ -18,6 +22,7 @@ import org.hzero.mybatis.helper.SecurityTokenHelper;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@ -33,6 +38,7 @@ import static com.xisc.pm.tool.Tool.nvl;
|
|
|
|
|
|
|
|
|
|
import com.xisc.pm.app.service.SubService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@RestController("subController.v1")
|
|
|
|
|
@Slf4j(topic = "xt-special1")
|
|
|
|
|
@RequestMapping("/v1/{organizationId}/Sub")
|
|
|
|
@ -40,7 +46,8 @@ public class SubController {
|
|
|
|
|
@Autowired
|
|
|
|
|
private SubService subService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private QdOrderClient qdOrderClient;
|
|
|
|
|
// @Autowired
|
|
|
|
|
// private TransactionService transactionService;
|
|
|
|
|
|
|
|
|
@ -189,6 +196,9 @@ public class SubController {
|
|
|
|
|
//记录已被使用的订单号
|
|
|
|
|
private static List<GPreOrder> plistOrdHis = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
private static List<ChkChmResult> plistChmChkRsult= new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
private static List<ChkLowResult> plistLowChkRsult= new ArrayList<>();
|
|
|
|
|
//endregion
|
|
|
|
|
|
|
|
|
|
@ApiOperation("求解处理")
|
|
|
|
@ -220,30 +230,114 @@ public class SubController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation("数据处理")
|
|
|
|
|
@Permission(level = ResourceLevel.ORGANIZATION)
|
|
|
|
|
@PostMapping("/SubData1")
|
|
|
|
|
public JsonData SubData1( PmProductionPlanReqDTO dtoList, @PathVariable Long organizationId) {
|
|
|
|
|
@Permission(level = ResourceLevel.ORGANIZATION)
|
|
|
|
|
public JsonData SubData1( PmSubHis dtoListpr, @PathVariable Long organizationId) {
|
|
|
|
|
SecurityTokenHelper.validTokenIgnoreInsert(dtoListpr);
|
|
|
|
|
String strSlab = dtoListpr.getSlabNo();
|
|
|
|
|
SubParams subParams = new SubParams();
|
|
|
|
|
subParams.setSlabNo(strSlab);
|
|
|
|
|
//获取所有数据
|
|
|
|
|
GetDataInfo(subParams);
|
|
|
|
|
|
|
|
|
|
plistSlab.forEach(p -> {
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
List<QdMatchParamDTO> dtoListChm = new ArrayList<QdMatchParamDTO>();
|
|
|
|
|
for (PmProCont gpo : plistOrder) {
|
|
|
|
|
QdMatchParamDTO phyFurnaceChemicalMatchDTO = new QdMatchParamDTO();
|
|
|
|
|
if (gpo.getOrderNo() == null || gpo.getOrderNo().equals("")) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
phyFurnaceChemicalMatchDTO.setOrderNo(gpo.getOrderNo());
|
|
|
|
|
phyFurnaceChemicalMatchDTO.setPono(p.getPono());
|
|
|
|
|
dtoListChm.add(phyFurnaceChemicalMatchDTO);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger.info("数量:" + dtoListChm.size());
|
|
|
|
|
logger.info("数量:" + dtoListChm.size());
|
|
|
|
|
logger.info("数量:" + dtoListChm.size());
|
|
|
|
|
logger.info("数量:" + dtoListChm.size());
|
|
|
|
|
|
|
|
|
|
List<QdMatchParamDTO> reslutChm = qdOrderClient.phyFurnaceChemicalMatchApi(organizationId,
|
|
|
|
|
dtoListChm);
|
|
|
|
|
if (reslutChm != null && !reslutChm.isEmpty()) {
|
|
|
|
|
if (reslutChm != null && !reslutChm.isEmpty()) {
|
|
|
|
|
for (QdMatchParamDTO qdMatchParamDTO : reslutChm) {
|
|
|
|
|
if (!plistChmChkRsult.stream().anyMatch(m -> m.getPono().equals(p.getPono()) && m.getOrderNo().equals(qdMatchParamDTO.getOrderNo()))) {
|
|
|
|
|
ChkChmResult CR = new ChkChmResult();
|
|
|
|
|
CR.setPono(p.getPono());
|
|
|
|
|
CR.setOrderNo(qdMatchParamDTO.getOrderNo());
|
|
|
|
|
CR.setChmresult(qdMatchParamDTO.getResult());
|
|
|
|
|
plistChmChkRsult.add(CR);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.info("错误信息:"+e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
List<QdSurplusLowMagnificationDTO> dtoListLow = new ArrayList<QdSurplusLowMagnificationDTO>();
|
|
|
|
|
for (PmProCont gpo : plistOrder) {
|
|
|
|
|
if (gpo.getOrderNo() == null || gpo.getOrderNo().equals("")) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
QdSurplusLowMagnificationDTO phyFurnaceChemicalMatchDTO = new QdSurplusLowMagnificationDTO();
|
|
|
|
|
phyFurnaceChemicalMatchDTO.setOrderNo(gpo.getOrderNo());
|
|
|
|
|
phyFurnaceChemicalMatchDTO.setPono(p.getPono());
|
|
|
|
|
dtoListLow.add(phyFurnaceChemicalMatchDTO);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
List<QdSurplusLowMagnificationDTO> reslutLow = qdOrderClient.surplusLowMagnificationMatchApi(organizationId,
|
|
|
|
|
dtoListLow);
|
|
|
|
|
|
|
|
|
|
if (reslutLow != null && !reslutLow.isEmpty()) {
|
|
|
|
|
if (reslutLow != null && !reslutLow.isEmpty()) {
|
|
|
|
|
for (QdSurplusLowMagnificationDTO qdSurplusLowMagnificationDTO : reslutLow) {
|
|
|
|
|
if (!plistLowChkRsult.stream().anyMatch(m -> m.getPono().equals(p.getPono()) && m.getOrderNo().equals(qdSurplusLowMagnificationDTO.getOrderNo()))) {
|
|
|
|
|
ChkLowResult CR = new ChkLowResult();
|
|
|
|
|
CR.setPono(p.getPono());
|
|
|
|
|
CR.setOrderNo(qdSurplusLowMagnificationDTO.getOrderNo());
|
|
|
|
|
CR.setLowresult(qdSurplusLowMagnificationDTO.getResult());
|
|
|
|
|
plistLowChkRsult.add(CR);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.info("错误信息:"+e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
System.out.println("调用成功");
|
|
|
|
|
JsonData xx = new JsonData();
|
|
|
|
|
xx.setCode(0);
|
|
|
|
|
xx.setData(null);
|
|
|
|
|
xx.setMsg("123");
|
|
|
|
|
|
|
|
|
|
return xx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation("数据处理")
|
|
|
|
|
@PostMapping("/SubData")
|
|
|
|
|
@Permission(level = ResourceLevel.ORGANIZATION)
|
|
|
|
|
public JsonData SubData(@RequestBody PmSubHis pmSubHis, @PathVariable Long organizationId) {
|
|
|
|
|
public JsonData SubData( PmSubHis pmSubHis, @PathVariable Long organizationId) {
|
|
|
|
|
SecurityTokenHelper.validTokenIgnoreInsert(pmSubHis);
|
|
|
|
|
String strSlab = pmSubHis.getSlabNo();
|
|
|
|
|
SubParams subParams = new SubParams();
|
|
|
|
|
subParams.setSlabNo(strSlab);
|
|
|
|
|
//测试阶段需要指定板坯号
|
|
|
|
|
if (strSlab==null || strSlab=="")
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
// if (strSlab==null || strSlab=="")
|
|
|
|
|
// {
|
|
|
|
|
// return null;
|
|
|
|
|
// }
|
|
|
|
|
//获取所有数据
|
|
|
|
|
GetDataInfo(subParams);
|
|
|
|
|
|
|
|
|
@ -291,6 +385,7 @@ public class SubController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
|
|
gltGCalGrp = new ArrayList<>();
|
|
|
|
|
//二次分组
|
|
|
|
|
SetGrpDataBySlab(p);
|
|
|
|
@ -299,7 +394,7 @@ public class SubController {
|
|
|
|
|
|
|
|
|
|
logger.info("***二次分组1数量*** " + gltGCalGrp.size());
|
|
|
|
|
|
|
|
|
|
logger.info("***二次分组2数量*** " + gltGCal2Grp.size());
|
|
|
|
|
logger.info("***二次分组21数量*** " + gltGCal2Grp.size());
|
|
|
|
|
|
|
|
|
|
gltGCalGrp.addAll(gltGCal2Grp);
|
|
|
|
|
|
|
|
|
@ -350,27 +445,27 @@ public class SubController {
|
|
|
|
|
|
|
|
|
|
SetGroupCalRslt(p);
|
|
|
|
|
|
|
|
|
|
logger.info("结果数据板坯号:{};数量:{}", p.getSlabNo(), gltGGrpCalRslt.size());
|
|
|
|
|
logger.info("结果数据板坯号:{};数量:{}", p.getSlabNo(), gltSelGGrpCalRslt.size());
|
|
|
|
|
}
|
|
|
|
|
if (gltSelGGrpCalRslt.size() > 0) {
|
|
|
|
|
now = new Date();
|
|
|
|
|
//存储数据,组板结果
|
|
|
|
|
SaveHisData(p);
|
|
|
|
|
//数据整理
|
|
|
|
|
SetSaveDate(p,organizationId);
|
|
|
|
|
//开启事务
|
|
|
|
|
//TransactionStatus transactionStatus = transactionService.begin();
|
|
|
|
|
try {
|
|
|
|
|
//保存数据
|
|
|
|
|
SaveData(p,organizationId);
|
|
|
|
|
//transactionService.commit(transactionStatus);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error("保存事务回滚:" + p.getSlabNo(), e);
|
|
|
|
|
//回滚事务
|
|
|
|
|
//transactionService.rollback(transactionStatus);
|
|
|
|
|
}
|
|
|
|
|
logger.info("所有结果数据板坯号:{};数量:{}", p.getSlabNo(), gltGGrpCalRslt.size());
|
|
|
|
|
logger.info("选择结果数据板坯号:{};数量:{}", p.getSlabNo(), gltSelGGrpCalRslt.size());
|
|
|
|
|
}
|
|
|
|
|
// if (gltSelGGrpCalRslt.size() > 0) {
|
|
|
|
|
// now = new Date();
|
|
|
|
|
// //存储数据,组板结果
|
|
|
|
|
// SaveHisData(p);
|
|
|
|
|
// //数据整理
|
|
|
|
|
// SetSaveDate(p,organizationId);
|
|
|
|
|
// //开启事务
|
|
|
|
|
// //TransactionStatus transactionStatus = transactionService.begin();
|
|
|
|
|
// try {
|
|
|
|
|
// //保存数据
|
|
|
|
|
// SaveData(p,organizationId);
|
|
|
|
|
// //transactionService.commit(transactionStatus);
|
|
|
|
|
// } catch (Exception e) {
|
|
|
|
|
// logger.error("保存事务回滚:" + p.getSlabNo(), e);
|
|
|
|
|
// //回滚事务
|
|
|
|
|
// //transactionService.rollback(transactionStatus);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error("板坯报错:" + p.getSlabNo(), e);
|
|
|
|
|