diff --git a/src/mycomponents/job/jobRepleinshTimeQty.vue b/src/mycomponents/job/jobRepleinshTimeQty.vue index cea75368..df82b048 100644 --- a/src/mycomponents/job/jobRepleinshTimeQty.vue +++ b/src/mycomponents/job/jobRepleinshTimeQty.vue @@ -2,7 +2,7 @@ 补料数量 - {{dataContent.unexecutedQty+dataContent.qty}}{{getUomInfo(dataContent.uom)}} + {{dataContent.unexecutedQty}}{{getUomInfo(dataContent.uom)}} | @@ -16,7 +16,7 @@ | 未补料数量 - {{dataContent.unexecutedQty}}{{getUomInfo(dataContent.uom)}} + {{dataContent.unexecutedQty-dataContent.qty>0?dataContent.unexecutedQty-dataContent.qty:0}}{{getUomInfo(dataContent.uom)}} diff --git a/src/pages/repleinsh/coms/comRepleishDetailCardTime.vue b/src/pages/repleinsh/coms/comRepleishDetailCardTime.vue index 872e9e4c..b82e732d 100644 --- a/src/pages/repleinsh/coms/comRepleishDetailCardTime.vue +++ b/src/pages/repleinsh/coms/comRepleishDetailCardTime.vue @@ -24,7 +24,7 @@ {{dataContent.recordList?dataContent.recordList.reduce((prev, item) => prev + Number(item['handleQty']),0):''}} / - {{dataContent.unexecutedQty}}{{' '+getUomInfo(dataContent.uom)}} + {{dataContent.unexecutedQty-dataContent.qty>0?dataContent.unexecutedQty-dataContent.qty:0}}{{' '+getUomInfo(dataContent.uom)}} diff --git a/src/pages/repleinsh/job/repleinshTimeDetail.vue b/src/pages/repleinsh/job/repleinshTimeDetail.vue index 1fadf526..411be51e 100644 --- a/src/pages/repleinsh/job/repleinshTimeDetail.vue +++ b/src/pages/repleinsh/job/repleinshTimeDetail.vue @@ -310,16 +310,23 @@ }, clickSubmit() { - // 未补料数量unexecutedQty + if(!this.jobContent.recordList||this.jobContent.recordList.length==0){ + this.showErrorMessage("扫描数为0,请先扫描") + return + } + + // 补料数量unexecutedQty // 已补料数量qty - let requestQty = this.jobContent.unexecutedQty+this.jobContent.qty + let requestQty = this.jobContent.unexecutedQty + debugger if(this.jobContent.qty>=requestQty){ // 已完成 + this.showErrorMessage("当前便次补料任务已完成") }else{ //部分完成 let handleQty = this.jobContent.recordList.reduce((prev, item) => prev + Number(item['handleQty']),0) - if(handleQty>requestQty){ - showConfirmMsg("拆包信息还没提交,是否要重新扫描?",res=>{ + if(this.jobContent.qty+handleQty>requestQty){ + showConfirmMsg("扫描数量大于补料数量,是否确认提交?",res=>{ if(res){ //防止重复点击 this.$throttle(this.submitJob, 2000, this)() @@ -330,7 +337,6 @@ this.$throttle(this.submitJob, 2000, this)() } } - }, @@ -570,6 +576,10 @@ }, getPackScanResult(result) { console.log('扫描结果',result) + if(result.balance.itemCode!=this.jobContent.itemCode){ + this.showErrorMessage('扫描非当前物料') + return + } this.jobContent.recordList.push({ scaned:true, uom:this.jobContent.uom,