常熟容器主条码场景问题修复

mes-uat-changshu0609^2
王杰 5 days ago
parent c4f5f32963
commit cb3476ce44

@ -149,7 +149,7 @@ public class MesStationMatchProductSnStepService extends BaseStepService {
List<MesProductionPartContext> productionPartContextList2UnFinish = CollectionUtils.isEmpty(productionPartContextList) ? null : productionPartContextList.stream().filter(o -> (null != o && o.getIsFinishCode().compareTo(CommonEnumUtil.TRUE_OR_FALSE.FALSE.getValue()) == 0)).collect(Collectors.toList());
//进料主条码数据信息
List<MesProductionPsInContext> productionPsInContextList = null;
List<MesProductionPsInContext> productionPsInContextList = new ArrayList<>();
//加工规则数据信息集合
List<MesProdRuleContext> prodRuleContextList = new ArrayList<>();

@ -115,7 +115,7 @@ public class MesStationMatchPsProcessMethodDecoratorStepService extends BaseStep
topContainerSnDetailMap2Sort.put(detailList2Sort.get(0).getTopContainerSnKey(), detailList2Sort);
}
return new MesContainerPackageDetailStationContext((List<MesStation>) stationMap2Back.values(), topContainerSnDetailMap2Sort);
return new MesContainerPackageDetailStationContext(stationMap2Back.values().stream().collect(Collectors.toList()), topContainerSnDetailMap2Sort);
}

Loading…
Cancel
Save