From ed81006782947451614ab36045d0bc0f6a20cc2c Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Fri, 14 Mar 2025 14:21:54 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mycomponents/job/jobTopDate.vue | 1 + src/pages/repleinsh/job/repleinshTimeDetail.vue | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mycomponents/job/jobTopDate.vue b/src/mycomponents/job/jobTopDate.vue index 79ac4eb4..14aee8af 100644 --- a/src/mycomponents/job/jobTopDate.vue +++ b/src/mycomponents/job/jobTopDate.vue @@ -87,6 +87,7 @@ background-color: #DA8910; min-width: 40rpx; height: 40rpx; + line-height: 40rpx; border-radius: 50%; color: white; } diff --git a/src/pages/repleinsh/job/repleinshTimeDetail.vue b/src/pages/repleinsh/job/repleinshTimeDetail.vue index e1cc64c9..1fadf526 100644 --- a/src/pages/repleinsh/job/repleinshTimeDetail.vue +++ b/src/pages/repleinsh/job/repleinshTimeDetail.vue @@ -644,7 +644,8 @@ text-align: center; background-color: #DA8910; min-width: 40rpx; - height: 40rpx; + height: 40rpx; + line-height: 40rpx; border-radius: 50%; color: white; } From aebc1699f490be312f9d22f01a9ce0c13ff64727 Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Fri, 14 Mar 2025 14:59:21 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BE=BF=E6=AC=A1=E8=A1=A5=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mycomponents/job/jobRepleinshTimeQty.vue | 4 ++-- .../coms/comRepleishDetailCardTime.vue | 2 +- .../repleinsh/job/repleinshTimeDetail.vue | 20 ++++++++++++++----- 3 files changed, 18 insertions(+), 8 deletions(-) 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,