修试入库通过驳回
This commit is contained in:
parent
ca722cad9e
commit
19cc629eb8
|
|
@ -378,7 +378,7 @@ export default {
|
||||||
let param = {
|
let param = {
|
||||||
taskId:this.rowData.taskId,
|
taskId:this.rowData.taskId,
|
||||||
typeId:this.rowData.typeId,
|
typeId:this.rowData.typeId,
|
||||||
maCodeList:[{maId:codeRow.maId}]
|
maCodeList:[{maId:codeRow.maId,maCode:codeRow.maCode}]
|
||||||
}
|
}
|
||||||
this.$modal.confirm("是否确认入库所选择的设备编码?")
|
this.$modal.confirm("是否确认入库所选择的设备编码?")
|
||||||
.then(function () {
|
.then(function () {
|
||||||
|
|
@ -424,7 +424,7 @@ export default {
|
||||||
taskId:this.rowData.taskId,
|
taskId:this.rowData.taskId,
|
||||||
typeId:this.rowData.typeId,
|
typeId:this.rowData.typeId,
|
||||||
rejectReason:this.rejectReason,
|
rejectReason:this.rejectReason,
|
||||||
maCodeList:[{maId:this.codeRow.maId}]
|
maCodeList:[{maId:this.codeRow.maId, maCode:this.codeRow.maCode}]
|
||||||
}
|
}
|
||||||
rejectWarehouseApi(param).then((response) => {
|
rejectWarehouseApi(param).then((response) => {
|
||||||
if(response.code==200){
|
if(response.code==200){
|
||||||
|
|
@ -452,7 +452,7 @@ export default {
|
||||||
this.passTemp.push({maId:item.maId, maCode:item.maCode});
|
this.passTemp.push({maId:item.maId, maCode:item.maCode});
|
||||||
});
|
});
|
||||||
selection.forEach((item) => {
|
selection.forEach((item) => {
|
||||||
this.failTemp.push({maId:item.maId});
|
this.failTemp.push({maId:item.maId, maCode:item.maCode});
|
||||||
});
|
});
|
||||||
this.single = selection.length != 1;
|
this.single = selection.length != 1;
|
||||||
this.multiple = !selection.length;
|
this.multiple = !selection.length;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue