Browse Source

修改盘点扫描功能

wms3.0_pda
聂喜婷 1 year ago
parent
commit
4caf98ec0b
  1. 64
      pages/count/job/countDetail.vue

64
pages/count/job/countDetail.vue

@ -331,24 +331,63 @@
that.label = result.label; that.label = result.label;
var item = this.detailSource.find(r => r.itemCode == that.package.itemCode); var item = this.detailSource.find(r => r.itemCode == that.package.itemCode);
if (item == undefined) { if (item == undefined) {
// this.$refs.comMessage.showQuestionMessage("" + that.package.itemCode + that.scanByBalance(result);
// ",?", } else {
// let subItem = item.subList.find(item => {
// if (item.packingNumber == that.label.packingNumber &&
// item.batch == that.label.batch && item.scaned == true) {
// return item;
// }
// })
let subItems = item.subList.filter(item => {
if (item.packingNumber == that.label.packingNumber &&
item.batch == that.label.batch) {
return item;
}
})
//
if (subItems.length > 1) {
let subItem = subItems.find(r => r.scaned == false)
if (subItem == undefined) {
subItem = subItems[0];
that.editCountResult(item, subItem);
} else {
that.scanByBalance(result);
}
} else if (subItems.length == 1) {
let subItem = subItems[0];
if (subItem.scaned) {
if (subItem != undefined) {
that.editCountResult(item, subItem);
// this.$refs.comMessage.showQuestionMessage("" + that.label.packingNumber +
// ",?",
// res => { // res => {
// if (res) { // if (res) {
that.scanByBalance(result); // this.currentEditItem = subItem;
// this.$refs.countQtyEdit.openEditPopup(subItem,
// item.subList);
// // this.$refs.countQtyEdit.openEditPopupShowSeconds(subItem,
// // item.subList);
// } else { // } else {
// this.scanPopupGetFocus(); // this.scanPopupGetFocus();
// } // }
// }) // })
} else { } else {
let subItem = item.subList.find(item => { that.scanByBalance(result);
if (item.packingNumber == that.label.packingNumber &&
item.batch == that.label.batch && item.scaned == true) {
return item;
} }
}) }
}
}
} catch (e) {
this.showErrorMessage(e.message)
}
},
if (subItem != undefined) { //
editCountResult(item, subItem) {
let that = this;
this.$refs.comMessage.showQuestionMessage("箱码【" + that.label.packingNumber + this.$refs.comMessage.showQuestionMessage("箱码【" + that.label.packingNumber +
"】已经完成盘点,是否要编辑盘点结果?", "】已经完成盘点,是否要编辑盘点结果?",
res => { res => {
@ -362,13 +401,6 @@
this.scanPopupGetFocus(); this.scanPopupGetFocus();
} }
}) })
} else {
that.scanByBalance(result);
}
}
} catch (e) {
this.showErrorMessage(e.message)
}
}, },
getUnOpenCountResult(result) { getUnOpenCountResult(result) {

Loading…
Cancel
Save