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

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

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

Loading…
Cancel
Save