|
|
@ -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, |
|
|
@ -644,7 +654,8 @@ |
|
|
|
text-align: center; |
|
|
|
background-color: #DA8910; |
|
|
|
min-width: 40rpx; |
|
|
|
height: 40rpx; |
|
|
|
height: 40rpx; |
|
|
|
line-height: 40rpx; |
|
|
|
border-radius: 50%; |
|
|
|
color: white; |
|
|
|
} |
|
|
|