报工问题修改

tags/yfai-pcn-ext-v1.0
微笑着面对明天 10 months ago
parent 183209b62a
commit f1f3a0d74b

@ -528,9 +528,9 @@ public class MesWorkOrderService implements IMesWorkOrderService {
} }
MesWorkOrder oldMesWorkOrder = getBestWorkOrder(productionRecord, oldMesWorkOrderList, mesWorkCenter); MesWorkOrder oldMesWorkOrder = getBestWorkOrder(productionRecord, oldMesWorkOrderList, mesWorkCenter);
if (oldMesWorkOrder == null) { if (oldMesWorkOrder == null) {
LOGGER.error(String.format("未找到匹配的加工单")); LOGGER.error(String.format("未找到匹配的加工单, 条码=%s",productionRecord.getCustSn()));
return;
throw new ImppBusiException(String.format("未找到匹配的加工单")); //throw new ImppBusiException(String.format("未找到匹配的加工单"));
} }
//获取生产版本 //获取生产版本
ddlPackBean = DdlPackBean.getDdlPackBean(organizeCode); ddlPackBean = DdlPackBean.getDdlPackBean(organizeCode);
@ -777,7 +777,7 @@ public class MesWorkOrderService implements IMesWorkOrderService {
DdlPreparedPack.getNotInPack(centerList, "workCenterCode", ddlPackBean); DdlPreparedPack.getNotInPack(centerList, "workCenterCode", ddlPackBean);
} }
DdlPreparedPack.getOrderByPack(new Object[]{CommonEnumUtil.ASC_OR_DESC.ASC.getValue()}, new String[]{"modifyDatetime"}, ddlPackBean); DdlPreparedPack.getOrderByPack(new Object[]{CommonEnumUtil.ASC_OR_DESC.ASC.getValue()}, new String[]{"modifyDatetime"}, ddlPackBean);
List<MesProductionRecord> mesProductionRecordList = productionRecordRao.findByHqlTopWhere(ddlPackBean, 100); List<MesProductionRecord> mesProductionRecordList = productionRecordRao.findByHqlTopWhere(ddlPackBean, 1000);
List<MesProductionRecord> recordList = new ArrayList<>(); List<MesProductionRecord> recordList = new ArrayList<>();
// 根据零件号分组 // 根据零件号分组
if(!CollectionUtils.isEmpty(mesProductionRecordList)) { if(!CollectionUtils.isEmpty(mesProductionRecordList)) {

Loading…
Cancel
Save