|
|
@@ -2852,9 +2852,9 @@
|
|
|
matchedPlanInfo,
|
|
|
period
|
|
|
);
|
|
|
- const childDisplayOrderCode = this.isOrderScheduling
|
|
|
- ? this.getOrderSchedulingDisplayOrderCode(matchedPlanInfo, period)
|
|
|
- : matchedPlanInfo.planCode;
|
|
|
+ const childBatchNo =
|
|
|
+ matchedPlanInfo.batchNo || period.batchNo || '';
|
|
|
+ const childDisplayOrderCode = childBatchNo;
|
|
|
rows.push({
|
|
|
id: this.buildGanttPeriodTaskId(
|
|
|
parentId,
|
|
|
@@ -2882,7 +2882,7 @@
|
|
|
matchedPlanInfo.routingName ||
|
|
|
matchedPlanInfo.produceRoutingName ||
|
|
|
'',
|
|
|
- batchNo: matchedPlanInfo.batchNo || period.batchNo || '',
|
|
|
+ batchNo: childBatchNo,
|
|
|
specification: matchedPlanInfo.specification || '',
|
|
|
modeType: matchedPlanInfo.modeType || '',
|
|
|
workstationName:
|
|
|
@@ -2927,8 +2927,7 @@
|
|
|
text: [
|
|
|
taskLabel,
|
|
|
childDisplayOrderCode,
|
|
|
- matchedPlanInfo.productName,
|
|
|
- matchedPlanInfo.batchNo || period.batchNo
|
|
|
+ matchedPlanInfo.productName
|
|
|
]
|
|
|
.filter(Boolean)
|
|
|
.join(' / '),
|