|
@@ -132,6 +132,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
detailsOfTheRefuelingPlan3.setPlanStatus("0");
|
|
|
detailsOfTheRefuelingPlan3.setProductType("B面");
|
|
|
List<DetailsOfTheRefuelingPlan> detailsOfTheRefuelingPlans3 = detailsOfTheRefuelingPlanMapper.selectDetailsOfTheRefuelingPlanList(detailsOfTheRefuelingPlan3);
|
|
|
+
|
|
|
//查询产线A面上机的
|
|
|
DetailsOfTheRefuelingPlan Asj=new DetailsOfTheRefuelingPlan();
|
|
|
Asj.setMachineId(item.getProductionLineNo());//产线号
|
|
@@ -167,10 +168,10 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
rs1.setMachineId(item.getProductionLineNo());//产线号
|
|
|
rs1.setProductType("A面");
|
|
|
BeanUtils.copyProperties(item1,rs1);
|
|
|
- rs1.setStartTime("停机");
|
|
|
+ rs1.setPlannedEndTime(rs1.getPlannedEndTime()+"停机");
|
|
|
rs1.setCurrentLotNumber(item1.getCurrentLotNumber().toString());
|
|
|
- //当前产线b面待生产
|
|
|
- String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
+ //当前产线A面待生产
|
|
|
+ String collect = detailsOfTheRefuelingPlans2.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|
|
|
rs1.setListOfPendingProduction(collect);
|
|
|
list.add(rs1);
|
|
|
});
|
|
@@ -224,7 +225,7 @@ public class AmmunitionPlanInformationIntermediateTableServiceImpl implements IA
|
|
|
AmmunitionPlanInformationIntermediateTableRVo rs1=new AmmunitionPlanInformationIntermediateTableRVo();
|
|
|
rs1.setMachineId(item.getProductionLineNo());//产线号
|
|
|
rs1.setProductType("B面");
|
|
|
- rs1.setStartTime("停机");
|
|
|
+ rs1.setPlannedEndTime(rs1.getPlannedEndTime()+"停机");
|
|
|
rs1.setCurrentLotNumber(item1.getCurrentLotNumber().toString());
|
|
|
//当前产线b面待生产
|
|
|
String collect = detailsOfTheRefuelingPlans3.stream().map(plan -> plan.getCurrentColorCode() + "-(" + plan.getCurrentLotNumber() + ")").collect(Collectors.joining(","));
|