|
|
@ -683,7 +683,6 @@ |
|
|
|
this.$refs.comMessage.showErrorMessage(str2); |
|
|
|
return; |
|
|
|
} |
|
|
|
return; |
|
|
|
if(this.scanCount < this.subList.length){ |
|
|
|
//扫描数量小于任务数量,判断是否允许部分提交 |
|
|
|
if (this.jobContent.allowPartialComplete == "TRUE") { |
|
|
@ -726,27 +725,6 @@ |
|
|
|
this.showErrorMessage(res.message); |
|
|
|
} |
|
|
|
}) |
|
|
|
//扫描数量和任务数量相等,直接提交 |
|
|
|
// if (this.scanCount == this.subList.length) { |
|
|
|
// this.submitJob(); |
|
|
|
// } else if (this.scanCount < this.subList.length) { |
|
|
|
// //扫描数量小于任务数量,判断是否允许部分提交 |
|
|
|
// if (this.jobContent.allowPartialComplete == "TRUE") { |
|
|
|
// //提交 |
|
|
|
// this.$refs.comMessage.showQuestionMessage1("任务明细未全部完成,是否提交?", 'red', res => { |
|
|
|
// if (res) { |
|
|
|
// this.submitJob() |
|
|
|
// } |
|
|
|
// }); |
|
|
|
// } else { |
|
|
|
// //不允许部分提交,提示 |
|
|
|
// this.$refs.comMessage.showErrorMessage("任务明细未全部完成,不允许部分提交!", res => { |
|
|
|
// if (res) { |
|
|
|
// this.openScanPopup(); |
|
|
|
// } |
|
|
|
// }); |
|
|
|
// } |
|
|
|
// } |
|
|
|
}, |
|
|
|
|
|
|
|
submitJob() { |
|
|
@ -754,8 +732,6 @@ |
|
|
|
title: "提交中....", |
|
|
|
mask: true |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
var params = this.setParams() |
|
|
|
console.log("提交参数", JSON.stringify(params)); |
|
|
|
putawayJobSubmit(params).then(res => { |
|
|
|