fix: 手持分切下卷提示信息
This commit is contained in:
@@ -1355,7 +1355,7 @@ public class SlitterServiceImpl implements SlitterService {
|
|||||||
} else {
|
} else {
|
||||||
String collect = byQzzNo
|
String collect = byQzzNo
|
||||||
.stream()
|
.stream()
|
||||||
.map(PdmBiSlittingproductionplan::getQzzno)
|
.map(PdmBiSlittingproductionplan::getContainer_name)
|
||||||
.collect(Collectors.joining(","));
|
.collect(Collectors.joining(","));
|
||||||
data.put("up", collect);
|
data.put("up", collect);
|
||||||
}
|
}
|
||||||
@@ -1369,7 +1369,7 @@ public class SlitterServiceImpl implements SlitterService {
|
|||||||
} else {
|
} else {
|
||||||
String collect = byQzzNo
|
String collect = byQzzNo
|
||||||
.stream()
|
.stream()
|
||||||
.map(PdmBiSlittingproductionplan::getQzzno)
|
.map(PdmBiSlittingproductionplan::getContainer_name)
|
||||||
.collect(Collectors.joining(","));
|
.collect(Collectors.joining(","));
|
||||||
data.put("down", collect);
|
data.put("down", collect);
|
||||||
}
|
}
|
||||||
@@ -1395,7 +1395,7 @@ public class SlitterServiceImpl implements SlitterService {
|
|||||||
// 找到该分切计划的点位
|
// 找到该分切计划的点位
|
||||||
BstIvtCutpointivt newCutPoint = cutPointList.get(0);
|
BstIvtCutpointivt newCutPoint = cutPointList.get(0);
|
||||||
String collect = timePlans.stream()
|
String collect = timePlans.stream()
|
||||||
.map(PdmBiSlittingproductionplan::getQzzno)
|
.map(PdmBiSlittingproductionplan::getContainer_name)
|
||||||
.filter(ObjectUtil::isNotEmpty)
|
.filter(ObjectUtil::isNotEmpty)
|
||||||
.collect(Collectors.joining(","));
|
.collect(Collectors.joining(","));
|
||||||
msg = msg + "下一趟子卷号[" + collect + "]准备的气胀轴位置[" + newCutPoint.getPoint_code() + "]";
|
msg = msg + "下一趟子卷号[" + collect + "]准备的气胀轴位置[" + newCutPoint.getPoint_code() + "]";
|
||||||
|
|||||||
Reference in New Issue
Block a user