Browse Source

修改盘点提示

intex_online20250327
lijuncheng 3 weeks ago
parent
commit
2d9442c284
  1. 2
      src/pages/count/job/countJob.vue
  2. 7
      src/pages/count/job/countLightDetail.vue

2
src/pages/count/job/countJob.vue

@ -310,7 +310,7 @@
})
if (list.length == 0) {
that.showMessage('未查找到库位' + '【' + result.label.code + '】盘点任务');
that.showMessage('库位' + '【' + result.label.code + '】未关联到盘点任务');
} else if (list.length == 1) {
that.selectItem(list[0]);
} else {

7
src/pages/count/job/countLightDetail.vue

@ -187,6 +187,7 @@
that.dataList.forEach(res => {
res.scaned = false;
})
// that.dataList =[]
that.updateList(false)
}
@ -577,17 +578,12 @@
},
submitJob() {
if (!this.checkData()) {
this.showErrorMessage("当前扫描数据为0,请先扫描")
return;
}
uni.showLoading({
title: "提交中....",
mask: true
});
var params = this.setParams()
// return;
countJobSubmit(params).then(res => {
uni.hideLoading()
const str = res.data || ''
@ -614,7 +610,6 @@
locationCode: this.locationCode,
recordList: []
}
var subList = []
this.dataList.forEach(item => {
if (item.scaned && item.recordList && item.recordList.length > 0) {
submitData.recordList = submitData.recordList.concat(item.recordList)

Loading…
Cancel
Save