Browse Source

HL-5553WMS PDA 物料隔离任务执行成功的提示语不正确,应该是生成物料隔离记录

hella_online_20240823
wangyufei 4 weeks ago
parent
commit
71ca94c93f
  1. 6
      src/pages/inventoryMove/job/inventoryMoveDetail.vue

6
src/pages/inventoryMove/job/inventoryMoveDetail.vue

@ -420,7 +420,11 @@
inventoryMoveSubmit(params).then(res => {
uni.hideLoading()
if (res.data) {
this.showCommitSuccessMessage("提交成功\n生成库存转移记录\n" + res.data)
let showTitle = this.title
if(this.title.indexOf('任务')==this.title.length-2){
showTitle = this.title.replace('任务','')
}
this.showCommitSuccessMessage("提交成功\n生成"+showTitle+"记录\n" + res.data)
} else {
this.showErrorMessage("提交失败[" + res.msg + "]")
}

Loading…
Cancel
Save