|
|
|
@ -451,57 +451,57 @@ public class ProOrderWorkorderServiceImpl implements IProOrderWorkorderService {
|
|
|
|
|
logger.info("获取sap领料单:" + sapWorkOrders.get(m) + "开始");
|
|
|
|
|
List<SapMaterialPreparation> sapMaterialPreparationList = remoteSapService.materialPreparation(sapWorkOrders.get(m)).getData();
|
|
|
|
|
if (CollectionUtils.isEmpty(sapMaterialPreparationList)) {
|
|
|
|
|
System.out.println("sap无领料单数据");
|
|
|
|
|
}
|
|
|
|
|
//取出各领料单
|
|
|
|
|
String orderCode = sapWorkOrders.get(m);
|
|
|
|
|
logger.info("sap工单码:" + orderCode);
|
|
|
|
|
/**mes_prepare**/
|
|
|
|
|
String mesPrepareId = IdUtils.fastSimpleUUID();
|
|
|
|
|
MesPrepareDTO mesPrepare0 = new MesPrepareDTO();
|
|
|
|
|
mesPrepare0.setPrepareId(mesPrepareId);
|
|
|
|
|
mesPrepare0.setWorkorderCode(workOrders.get(m));
|
|
|
|
|
mesPrepare0.setWorkorderName(orderCode);//工单(子)
|
|
|
|
|
mesPrepare0.setCreateTime(createDate);
|
|
|
|
|
mesPrepare0.setCreateBy(SecurityUtils.getUsername());
|
|
|
|
|
mesPrepare0.setStatus("L0");//默认待确认
|
|
|
|
|
proOrderWorkorderMapper.insertMesPrepare(mesPrepare0);
|
|
|
|
|
/**mes_prepare_detail**/
|
|
|
|
|
List<MesPrepareDetailDTO> details = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
MesPrepareDetailDTO detail = null;
|
|
|
|
|
for (SapMaterialPreparation sap : sapMaterialPreparationList) {
|
|
|
|
|
detail = new MesPrepareDetailDTO();
|
|
|
|
|
detail.setPrepareId(mesPrepareId);
|
|
|
|
|
detail.setRecordId(IdUtils.fastSimpleUUID());
|
|
|
|
|
detail.setAttr1(sap.getRSPOS());//预留/相关需求的项目编号
|
|
|
|
|
detail.setMaterialCode(sap.getMATNR());//物料号
|
|
|
|
|
detail.setMaterailName(sap.getMAKTX());//物料描述(短文本)
|
|
|
|
|
detail.setFactoryCode(sap.getWERKS());//工厂
|
|
|
|
|
detail.setLocator(sap.getLGORT());//库存地点
|
|
|
|
|
detail.setNeedDate(sap.getBDTER());//组件的需求日期
|
|
|
|
|
detail.setQuantity(sap.getBDMNG());////需求量
|
|
|
|
|
detail.setFundQuanlity(sap.getZQLSL());//欠料数量
|
|
|
|
|
detail.setUnit(sap.getMEINS());//基本计量单位
|
|
|
|
|
detail.setRecoil(sap.getRGEKZ());//反冲标识
|
|
|
|
|
detail.setBuyFlag(sap.getDBSKZ());//直接采购标识
|
|
|
|
|
detail.setCreateBy(SecurityUtils.getUsername());
|
|
|
|
|
detail.setCreateTime(createDate);
|
|
|
|
|
detail.setParentWorkOrder(workOrders.get(0));
|
|
|
|
|
detail.setErfmg(sap.getERFMG());//以输入单位计的数量
|
|
|
|
|
detail.setErfme(sap.getERFME());//条目单位
|
|
|
|
|
details.add(detail);
|
|
|
|
|
logger.info("领料单内容detail:" + sap.getRSPOS() + "," + sap.getMATNR() + "," +
|
|
|
|
|
sap.getMAKTX() + "," + sap.getWERKS() + "," + sap.getLGORT() + "," +
|
|
|
|
|
sap.getBDTER() + "," + sap.getBDMNG() + "," + sap.getZQLSL() + "," +
|
|
|
|
|
sap.getMEINS() + "," + sap.getRGEKZ() + "," + sap.getDBSKZ()+ "," +
|
|
|
|
|
sap.getERFMG() + "," + sap.getERFME()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (!CollectionUtils.isEmpty(details)) {
|
|
|
|
|
proOrderWorkorderMapper.insertMesPrepareDetails(details);
|
|
|
|
|
logger.info("sap无领料单数据");
|
|
|
|
|
}else{
|
|
|
|
|
//取出各领料单
|
|
|
|
|
String orderCode = sapWorkOrders.get(m);
|
|
|
|
|
logger.info("sap工单码:" + orderCode);
|
|
|
|
|
/**mes_prepare**/
|
|
|
|
|
String mesPrepareId = IdUtils.fastSimpleUUID();
|
|
|
|
|
MesPrepareDTO mesPrepare0 = new MesPrepareDTO();
|
|
|
|
|
mesPrepare0.setPrepareId(mesPrepareId);
|
|
|
|
|
mesPrepare0.setWorkorderCode(workOrders.get(m));
|
|
|
|
|
mesPrepare0.setWorkorderName(orderCode);//工单(子)
|
|
|
|
|
mesPrepare0.setCreateTime(createDate);
|
|
|
|
|
mesPrepare0.setCreateBy(SecurityUtils.getUsername());
|
|
|
|
|
mesPrepare0.setStatus("L0");//默认待确认
|
|
|
|
|
proOrderWorkorderMapper.insertMesPrepare(mesPrepare0);
|
|
|
|
|
/**mes_prepare_detail**/
|
|
|
|
|
List<MesPrepareDetailDTO> details = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
MesPrepareDetailDTO detail = null;
|
|
|
|
|
for (SapMaterialPreparation sap : sapMaterialPreparationList) {
|
|
|
|
|
detail = new MesPrepareDetailDTO();
|
|
|
|
|
detail.setPrepareId(mesPrepareId);
|
|
|
|
|
detail.setRecordId(IdUtils.fastSimpleUUID());
|
|
|
|
|
detail.setAttr1(sap.getRSPOS());//预留/相关需求的项目编号
|
|
|
|
|
detail.setMaterialCode(sap.getMATNR());//物料号
|
|
|
|
|
detail.setMaterailName(sap.getMAKTX());//物料描述(短文本)
|
|
|
|
|
detail.setFactoryCode(sap.getWERKS());//工厂
|
|
|
|
|
detail.setLocator(sap.getLGORT());//库存地点
|
|
|
|
|
detail.setNeedDate(sap.getBDTER());//组件的需求日期
|
|
|
|
|
detail.setQuantity(sap.getBDMNG());////需求量
|
|
|
|
|
detail.setFundQuanlity(sap.getZQLSL());//欠料数量
|
|
|
|
|
detail.setUnit(sap.getMEINS());//基本计量单位
|
|
|
|
|
detail.setRecoil(sap.getRGEKZ());//反冲标识
|
|
|
|
|
detail.setBuyFlag(sap.getDBSKZ());//直接采购标识
|
|
|
|
|
detail.setCreateBy(SecurityUtils.getUsername());
|
|
|
|
|
detail.setCreateTime(createDate);
|
|
|
|
|
detail.setParentWorkOrder(workOrders.get(0));
|
|
|
|
|
detail.setErfmg(sap.getERFMG());//以输入单位计的数量
|
|
|
|
|
detail.setErfme(sap.getERFME());//条目单位
|
|
|
|
|
details.add(detail);
|
|
|
|
|
logger.info("领料单内容detail:" + sap.getRSPOS() + "," + sap.getMATNR() + "," +
|
|
|
|
|
sap.getMAKTX() + "," + sap.getWERKS() + "," + sap.getLGORT() + "," +
|
|
|
|
|
sap.getBDTER() + "," + sap.getBDMNG() + "," + sap.getZQLSL() + "," +
|
|
|
|
|
sap.getMEINS() + "," + sap.getRGEKZ() + "," + sap.getDBSKZ()+ "," +
|
|
|
|
|
sap.getERFMG() + "," + sap.getERFME()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
if (!CollectionUtils.isEmpty(details)) {
|
|
|
|
|
proOrderWorkorderMapper.insertMesPrepareDetails(details);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger.info("获取sap领料单:" + sapWorkOrders.get(m) + "结束");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -1455,6 +1455,32 @@ public class ProOrderWorkorderServiceImpl implements IProOrderWorkorderService {
|
|
|
|
|
return dtos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
public int updateWorkOrderBom(String workorderCode) {
|
|
|
|
|
List<ProOrderWorkorder> proOrders = proOrderWorkorderMapper.getWorkList(workorderCode);
|
|
|
|
|
if(CollectionUtils.isEmpty(proOrders)){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**获取领料单
|
|
|
|
|
*sapCodes顺序:母子
|
|
|
|
|
* wcodes:母子
|
|
|
|
|
**/
|
|
|
|
|
List<String> sapCodes = new ArrayList<>();
|
|
|
|
|
List<String> wcodes = new ArrayList<>();
|
|
|
|
|
for(ProOrderWorkorder pow:proOrders){
|
|
|
|
|
sapCodes.add(pow.getWorkorderCodeSap());
|
|
|
|
|
wcodes.add(pow.getWorkorderCode());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//清理---mes_prepare_detail、mes_prepare
|
|
|
|
|
proOrderWorkorderMapper.clearMP(wcodes);
|
|
|
|
|
proOrderWorkorderMapper.clearMPDetail(wcodes);
|
|
|
|
|
this.getMesPrepare(sapCodes, wcodes);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 校验工单是否可以修改
|
|
|
|
|
* 如果工单已生成湿料计划则不允许修改
|
|
|
|
|