|
|
|
@ -244,7 +244,7 @@ |
|
|
|
header-align="center" |
|
|
|
align="center" |
|
|
|
min-width="170" |
|
|
|
label="新物料编码"> |
|
|
|
label="IFS料号"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input :disabled="changeRequestDetailFlag('newPartNo') === 'N'" @input="(val)=>partInput(scope.row, val)" :ref="`newPartNo${scope.$index}`" v-model="scope.row.newPartNo" @keyup.enter.native="focusNextInput(scope.$index, 'newPartNo')" style="width:77%"></el-input> |
|
|
|
<el-button :disabled="changeRequestDetailFlag('newPartNo') === 'N'" type="primary" @click="choosePartNo(scope.row)" style="width:18%;padding: 3px 7px">· · ·</el-button> |
|
|
|
@ -470,7 +470,7 @@ |
|
|
|
<el-form-item label="原菲林编号"> |
|
|
|
<el-input :disabled="changeExecutionInfoFlag('originalFilmNo') === 'N'" v-model="executionInfoData.originalFilmNo" style="width: 226px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="原啤刀编号"> |
|
|
|
<el-form-item label="原碑刀编号"> |
|
|
|
<el-input :disabled="changeExecutionInfoFlag('originalDieCuttingRuleNo') === 'N'" v-model="executionInfoData.originalDieCuttingRuleNo" style="width: 226px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="原网板/印版编号"> |
|
|
|
@ -484,7 +484,7 @@ |
|
|
|
<el-form-item label="新菲林编号"> |
|
|
|
<el-input :disabled="changeExecutionInfoFlag('newFilmNo') === 'N'" v-model="executionInfoData.newFilmNo" style="width: 226px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="新啤刀编号"> |
|
|
|
<el-form-item label="新碑刀编号"> |
|
|
|
<el-input :disabled="changeExecutionInfoFlag('newDieCuttingRuleNo') === 'N'" v-model="executionInfoData.newDieCuttingRuleNo" style="width: 226px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="新网板/印版编号"> |
|
|
|
@ -605,7 +605,7 @@ |
|
|
|
width="60" |
|
|
|
label="操作"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-link v-if="scope.row.executeFlag !== 'Y' && $store.state.user.name === scope.row.itemDesc && modalData.changeStatus === '审批中'" style="cursor: pointer" @click="executeCSModal(scope.row)">执行</el-link> |
|
|
|
<el-link v-if="scope.row.executeFlag !== 'Y' && $store.state.user.name === scope.row.itemDesc && modalData.changeStatus === '审批中'" style="cursor: pointer" @click="executeCSModal(scope.row)">会签</el-link> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
@ -802,12 +802,12 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="原啤刀编号"> |
|
|
|
<el-form-item label="原碑刀编号"> |
|
|
|
<el-input disabled v-model="currentExecutionInfoData.originalDieCuttingRuleNo" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="新啤刀编号"> |
|
|
|
<el-form-item label="新碑刀编号"> |
|
|
|
<el-input disabled v-model="currentExecutionInfoData.newDieCuttingRuleNo" ></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
@ -2051,8 +2051,8 @@ |
|
|
|
tableName: '变更单基本信息表', |
|
|
|
columnProp: 'newPartNo', |
|
|
|
headerAlign: 'center', |
|
|
|
align: 'center', |
|
|
|
columnLabel: '新物料编码', |
|
|
|
align: 'left', |
|
|
|
columnLabel: 'IFS料号', |
|
|
|
columnHidden: false, |
|
|
|
columnImage: false, |
|
|
|
status: true, |
|
|
|
@ -4002,7 +4002,6 @@ |
|
|
|
// return |
|
|
|
// } |
|
|
|
|
|
|
|
|
|
|
|
if (this.costImpactData.productionProductFlag === 'Y') { // 在生产品 |
|
|
|
if (this.costImpactData.productionProductNumber == null || this.costImpactData.productionProductNumber === '') { |
|
|
|
this.$message.warning('请填写在生产品数量!') |
|
|
|
@ -4080,13 +4079,12 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (this.executionInfoData.originalDieCuttingRuleNo == null || this.executionInfoData.originalDieCuttingRuleNo === '') { |
|
|
|
this.$message.warning('请填写原啤刀编号!') |
|
|
|
this.$message.warning('请填写原碑刀编号!') |
|
|
|
return; |
|
|
|
} |
|
|
|
if (this.executionInfoData.newDieCuttingRuleNo == null || this.executionInfoData.newDieCuttingRuleNo === '') { |
|
|
|
this.$message.warning('请填写新啤刀编号!') |
|
|
|
this.$message.warning('请填写新碑刀编号!') |
|
|
|
return; |
|
|
|
} |
|
|
|
if (this.executionInfoData.originalStencilNo == null || this.executionInfoData.originalStencilNo === '') { |
|
|
|
@ -4354,7 +4352,7 @@ |
|
|
|
|
|
|
|
// 执行所选属性 |
|
|
|
executeCSModal (row) { |
|
|
|
this.$confirm(`是否确认提交?`, '提示', { |
|
|
|
this.$confirm(`是否确认会签?`, '提示', { |
|
|
|
confirmButtonText: '确定', |
|
|
|
cancelButtonText: '取消', |
|
|
|
type: 'warning' |
|
|
|
@ -4485,11 +4483,11 @@ |
|
|
|
this.executionInfoData.chooseItemList = this.chooseItemList |
|
|
|
this.executionInfoData.chooseItemList2 = this.chooseItemList2 |
|
|
|
if (this.executionInfoData.originalDieCuttingRuleNo == null || this.executionInfoData.originalDieCuttingRuleNo === '') { |
|
|
|
this.$message.warning('请填写原啤刀编号!') |
|
|
|
this.$message.warning('请填写原碑刀编号!') |
|
|
|
return; |
|
|
|
} |
|
|
|
if (this.executionInfoData.newDieCuttingRuleNo == null || this.executionInfoData.newDieCuttingRuleNo === '') { |
|
|
|
this.$message.warning('请填写新啤刀编号!') |
|
|
|
this.$message.warning('请填写新碑刀编号!') |
|
|
|
return; |
|
|
|
} |
|
|
|
if (this.executionInfoData.originalStencilNo == null || this.executionInfoData.originalStencilNo === '') { |
|
|
|
|