Browse Source

修改提示

pda_nev
李俊城 10 months ago
parent
commit
051474839e
  1. 7
      fe/PDA/pages/request/assembleIssueRequestListDetail.vue
  2. 7
      fe/PDA/pages/request/coatingIssueRequestListDetail.vue
  3. 7
      fe/PDA/pages/request/injectionIssueRequestListDetail.vue
  4. 7
      fe/PDA/pages/request/kittingIssueRequestListDetail.vue
  5. 7
      fe/PDA/pages/request/sparePartIssueRequestListDetail.vue
  6. 2
      fe/PDA/pages/task/unProducePickDetail.vue
  7. 2
      fe/PDA/pages/task/unProducePickWipDetail.vue
  8. 2
      fe/PDA/pages/task/unProduceReturnDetail.vue
  9. 2
      fe/PDA/pages/task/unProduceReturnWipDetail.vue

7
fe/PDA/pages/request/assembleIssueRequestListDetail.vue

@ -196,7 +196,12 @@
if(isHaveNewJob.includes("无任务")){ if(isHaveNewJob.includes("无任务")){
this.showMessage(isHaveNewJob) this.showMessage(isHaveNewJob)
}else { }else {
navigateBack(1) uni.showToast({
title:"执行成功"
})
setTimeout(res=>{
navigateBack(1)
},1000)
} }
}catch(error){ }catch(error){

7
fe/PDA/pages/request/coatingIssueRequestListDetail.vue

@ -196,7 +196,12 @@
if(isHaveNewJob.includes("无任务")){ if(isHaveNewJob.includes("无任务")){
this.showMessage(isHaveNewJob) this.showMessage(isHaveNewJob)
}else { }else {
navigateBack(1) uni.showToast({
title:"执行成功"
})
setTimeout(res=>{
navigateBack(1)
},1000)
} }
}catch(error){ }catch(error){
uni.hideLoading() uni.hideLoading()

7
fe/PDA/pages/request/injectionIssueRequestListDetail.vue

@ -196,7 +196,12 @@
if(isHaveNewJob.includes("无任务")){ if(isHaveNewJob.includes("无任务")){
this.showMessage(isHaveNewJob) this.showMessage(isHaveNewJob)
}else { }else {
navigateBack(1) uni.showToast({
title:"执行成功"
})
setTimeout(res=>{
navigateBack(1)
},1000)
} }
}catch(error){ }catch(error){
uni.hideLoading() uni.hideLoading()

7
fe/PDA/pages/request/kittingIssueRequestListDetail.vue

@ -196,7 +196,12 @@
if(isHaveNewJob.includes("无任务")){ if(isHaveNewJob.includes("无任务")){
this.showMessage(isHaveNewJob) this.showMessage(isHaveNewJob)
}else { }else {
navigateBack(1) uni.showToast({
title:"执行成功"
})
setTimeout(res=>{
navigateBack(1)
},1000)
} }
}catch(error){ }catch(error){
uni.hideLoading() uni.hideLoading()

7
fe/PDA/pages/request/sparePartIssueRequestListDetail.vue

@ -196,7 +196,12 @@
if(isHaveNewJob.includes("无任务")){ if(isHaveNewJob.includes("无任务")){
this.showMessage(isHaveNewJob) this.showMessage(isHaveNewJob)
}else { }else {
navigateBack(1) uni.showToast({
title:"执行成功"
})
setTimeout(res=>{
navigateBack(1)
},1000)
} }
}catch(error){ }catch(error){
uni.hideLoading() uni.hideLoading()

2
fe/PDA/pages/task/unProducePickDetail.vue

@ -660,7 +660,7 @@
this.$refs['comNumberBox_' + index][0].setValue(item.handledQty); this.$refs['comNumberBox_' + index][0].setValue(item.handledQty);
} else if (value > item.defaultHandleQty) { } else if (value > item.defaultHandleQty) {
item.handledQty = item.defaultHandleQty item.handledQty = item.defaultHandleQty
this.showMessage('领料数量不能大于库存数量:' + item.handledQty) this.showMessage("实际领料数量不能大于申请数量")
this.$refs['comNumberBox_' + index][0].setValue(item.handledQty); this.$refs['comNumberBox_' + index][0].setValue(item.handledQty);
} }
}, },

2
fe/PDA/pages/task/unProducePickWipDetail.vue

@ -293,7 +293,7 @@
return; return;
} }
if (value > item.recommendQty) { if (value > item.recommendQty) {
this.showMessage("输入数量[" + value + "]大于推荐数量[" + item.recommendQty + "]") this.showMessage("实际领料数量不能大于申请数量")
this.$refs['comNumberBox_' + index][0].setValue(item.recommendQty); this.$refs['comNumberBox_' + index][0].setValue(item.recommendQty);
return; return;
} }

2
fe/PDA/pages/task/unProduceReturnDetail.vue

@ -629,7 +629,7 @@
this.$refs['comNumberBox_' + index][0].setValue(item.handledQty); this.$refs['comNumberBox_' + index][0].setValue(item.handledQty);
} else if (value > item.defaultHandleQty) { } else if (value > item.defaultHandleQty) {
item.handledQty = item.defaultHandleQty item.handledQty = item.defaultHandleQty
this.showMessage('退料数量不能大于库存数量:' + item.handledQty) this.showMessage("实际退料数量不能大于申请数量")
this.$refs['comNumberBox_' + index][0].setValue(item.handledQty); this.$refs['comNumberBox_' + index][0].setValue(item.handledQty);
} }
}, },

2
fe/PDA/pages/task/unProduceReturnWipDetail.vue

@ -293,7 +293,7 @@
return; return;
} }
if (value > item.recommendQty) { if (value > item.recommendQty) {
this.showMessage("输入数量[" + value + "]大于推荐数量[" + item.recommendQty + "]") this.showMessage("实际退料数量不能大于申请数量")
this.$refs['comNumberBox_' + index][0].setValue(item.recommendQty); this.$refs['comNumberBox_' + index][0].setValue(item.recommendQty);
return; return;
} }

Loading…
Cancel
Save