|
|
|
@ -528,7 +528,7 @@ |
|
|
|
{{ labels.rollSplit }} |
|
|
|
</el-button> |
|
|
|
<el-button type="primary" @click="malformedMaterialModal()" |
|
|
|
:disabled="malformedMaterialButtonFlag || rollSplitButton" |
|
|
|
:disabled="malformedMaterialButtonFlag || rollSplitButton || scheduleData.closedFlag=='Y'" |
|
|
|
style=" width: 120px; margin-bottom: 5px; margin-left: 3PX"> |
|
|
|
{{ labels.scannerMaterial }} |
|
|
|
</el-button> |
|
|
|
@ -3615,6 +3615,7 @@ export default { |
|
|
|
}, |
|
|
|
malformedMaterialModal() { |
|
|
|
if (!this.selectSfdcRollData) { |
|
|
|
this.$message.warning('请选择机器下机卷!') |
|
|
|
return; |
|
|
|
} |
|
|
|
//打开生产过程的工具的页面 |
|
|
|
@ -3742,6 +3743,7 @@ export default { |
|
|
|
this.scheduleData.workCenterDesc = data.row.workCenterDesc; |
|
|
|
this.scheduleData.resourceDesc = data.row.resourceDesc; |
|
|
|
this.scheduleData.preItemNo = data.row.preItemNo; |
|
|
|
this.scheduleData.closedFlag = data.row.closedFlag; |
|
|
|
}); |
|
|
|
}, |
|
|
|
// 获取当前卷的信息 |
|
|
|
@ -3885,6 +3887,7 @@ export default { |
|
|
|
this.scheduleData.workCenterDesc = data.row.workCenterDesc; |
|
|
|
this.scheduleData.resourceDesc = data.row.resourceDesc; |
|
|
|
this.scheduleData.preItemNo = data.row.preItemNo; |
|
|
|
this.scheduleData.closedFlag = data.row.closedFlag; |
|
|
|
//设置弹窗的标题 |
|
|
|
this.titleCon = this.labels.componentTitle + ' - ' + data.row.itemDesc + ' ' |
|
|
|
+ data.row.resourceDesc + ' (' + this.operatorData.operatorName + ')'; |
|
|
|
|