|
@@ -162,7 +162,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
BeanUtils.copyProperties(item1, rs1);
|
|
|
rs1.setCurrentLotNumber(item1.getCurrentLotNumber().toString());
|
|
|
//当前产线A面待生产
|
|
|
- String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans2.stream().map(plan ->plan.getCurrentColorCode() +"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
list.add(rs1);
|
|
|
});
|
|
@@ -188,7 +188,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
rs1.setPlannedEndTime(rs1.getPlannedEndTime() + "停机");
|
|
|
rs1.setCurrentLotNumber(item1.getCurrentLotNumber().toString());
|
|
|
//当前产线A面待生产
|
|
|
- String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() +"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
list.add(rs1);
|
|
|
});
|
|
@@ -204,7 +204,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
rs1.setProductType("A面");
|
|
|
rs1.setPlannedEndTime("停机");
|
|
|
//当前产线A面待生产
|
|
|
- String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode()+"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
list.add(rs1);
|
|
|
});
|
|
@@ -215,7 +215,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
AmmunitionPlanInformationIntermediateTableRVo rs1 = new AmmunitionPlanInformationIntermediateTableRVo();
|
|
|
rs1.setMachineId(item.getProductionLineNo());//产线号
|
|
|
rs1.setMacId(item.getId().toString());//产线iD
|
|
|
- String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() +"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
rs1.setProductType("A面");
|
|
|
list.add(rs1);
|
|
@@ -247,7 +247,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
BeanUtils.copyProperties(item1, rs1);
|
|
|
rs1.setCurrentLotNumber(item1.getCurrentLotNumber().toString());
|
|
|
//当前产线b面待生产
|
|
|
- String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() +"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
list.add(rs1);
|
|
|
});
|
|
@@ -267,7 +267,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
rs1.setProductType("B面");
|
|
|
rs1.setPlannedEndTime("停机");
|
|
|
//当前产线b面待生产
|
|
|
- String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() +"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
list.add(rs1);
|
|
|
});
|
|
@@ -278,7 +278,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
AmmunitionPlanInformationIntermediateTableRVo rs1 = new AmmunitionPlanInformationIntermediateTableRVo();
|
|
|
rs1.setMachineId(item.getProductionLineNo());//产线号
|
|
|
rs1.setMacId(item.getId().toString());//产线iD
|
|
|
- String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() +"-"+plan.getCurrentSpecification()+ "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
rs1.setProductType("B面");
|
|
|
list.add(rs1);
|