重庆退料接收问题修改
This commit is contained in:
parent
926fdb1872
commit
28461b4488
|
|
@ -17,7 +17,7 @@
|
|||
style="width: 240px"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>-->
|
||||
</el-form-item>-->
|
||||
|
||||
<el-form-item label="机具名称" prop="typeId">
|
||||
<el-select
|
||||
|
|
@ -180,7 +180,7 @@
|
|||
(scope.row.partNum =
|
||||
scope.row.manageType == 0 ||
|
||||
scope.row.manageType == 1
|
||||
? scope.row.preNum
|
||||
? scope.row.maxBackNum
|
||||
: scope.row.partNum)
|
||||
}}
|
||||
</span>
|
||||
|
|
@ -214,7 +214,7 @@
|
|||
size="mini"
|
||||
@click="handleViewNum(scope.row)"
|
||||
v-if="scope.row.manageType=='1'"
|
||||
>查看</el-button>-->
|
||||
>查看</el-button>-->
|
||||
<el-button
|
||||
size="mini"
|
||||
type="primary"
|
||||
|
|
@ -222,7 +222,7 @@
|
|||
v-if="
|
||||
!isView &&
|
||||
scope.row.manageType == '0' &&
|
||||
scope.row.preNum > 0 &&
|
||||
scope.row.maxBackNum > 0 &&
|
||||
(userId == scope.row.userId || userId == 1)
|
||||
"
|
||||
>
|
||||
|
|
@ -236,7 +236,7 @@
|
|||
!isView &&
|
||||
(scope.row.manageType == '1' ||
|
||||
scope.row.manageType == '2') &&
|
||||
scope.row.preNum > 0 &&
|
||||
scope.row.maxBackNum > 0 &&
|
||||
(userId == scope.row.userId || userId == 1)
|
||||
"
|
||||
>
|
||||
|
|
@ -881,7 +881,7 @@ export default {
|
|||
this.codeQuery.parentId = row.id
|
||||
this.codeQuery.typeId = row.modelId
|
||||
this.dialogIsView = true
|
||||
this.returnNum = Number(row.preNum)
|
||||
this.returnNum = Number(row.maxBackNum)
|
||||
this.handleCodeQuery()
|
||||
} else if (row.manageType == '2') {
|
||||
this.handleNumReturn(row)
|
||||
|
|
@ -931,7 +931,7 @@ export default {
|
|||
this.codeQuery.typeId = row.modelId
|
||||
this.codeQuery.agreementId = row.agreementId
|
||||
this.dialogIsView = false
|
||||
this.returnNum = Number(row.preNum)
|
||||
this.returnNum = Number(row.maxBackNum)
|
||||
this.handleCodeQuery()
|
||||
},
|
||||
//数量退料
|
||||
|
|
@ -939,8 +939,8 @@ export default {
|
|||
this.title = '数量退料'
|
||||
this.openNum = true
|
||||
this.dialogIsView = false
|
||||
this.$set(row, 'backNum', row.preNum) //退料数量
|
||||
this.returnNum = Number(row.preNum)
|
||||
this.$set(row, 'backNum', row.maxBackNum) //退料数量
|
||||
this.returnNum = Number(row.maxBackNum)
|
||||
this.dialogData.typeMange = row.manageType
|
||||
this.dialogData.typeName = row.typeName
|
||||
this.dialogData.typeCode = row.typeCode
|
||||
|
|
|
|||
Loading…
Reference in New Issue