Browse Source

修改扫描后的排序

hella_online_20240829
niexiting 2 months ago
parent
commit
bb35c27145
  1. 39
      src/pages/purchaseReceipt/job/receiptDetail.vue

39
src/pages/purchaseReceipt/job/receiptDetail.vue

@ -44,8 +44,7 @@
<view v-if="operation=='receipt'" class="uni-flex u-col-center space-between padding_10">
<view>
<locationCompare ref="locationCompare" title="收货库位" :recommendLocationCode="jobToLocationCode"
@getLocation='scanLocationCode'
:locationAreaTypeList="toLocationAreaTypeList">
@getLocation='scanLocationCode' :locationAreaTypeList="toLocationAreaTypeList">
</locationCompare>
</view>
<view>
@ -265,7 +264,6 @@
getScanResult(result) {
try {
var itemCode = result.label.itemCode;
var detail = this.detailSource.find(r => r.itemCode == itemCode);
@ -284,10 +282,11 @@
} else {
itemDetail.forEach(item => {
item.scaned = true;
itemDetail.scaneDate = new Date();
item.handleQty = item.qty;
item.toLocationCode = this.toLocationCode;
})
this.detailSource[0].subList.sort(compareAsc('scaned')); //
this.detailSource[0].subList.sort(compareAsc('scaneDate')); //
calcHandleQty(this.detailSource);
this.continueScan()
this.$forceUpdate()
@ -306,9 +305,13 @@
batch);
if (itemDetail == undefined) {
var isExit;
for (let subItem of detail.subList) {
let subItem;
let index = -1;
for (subItem of detail.subList) {
var item;
for (let pack of subItem.packList) {
for (var i = 0; i < subItem.packList.length; i++) {
let pack = subItem.packList[i];
index = i;
if (pack.packingNumber == packingNumber &&
pack.batch == batch) {
item = pack;
@ -316,18 +319,26 @@
break;
}
}
if (item != undefined) {
subItem.scaned = true
subItem.handleQty = 0;
item = undefined
}
// for (let pack of subItem.packList) {
// if (pack.packingNumber == packingNumber &&
// pack.batch == batch) {
// item = pack;
// isExit = pack;
// break;
// }
// }
// if (item != undefined) {
// subItem.scaned = true
// subItem.handleQty = 0;
// item = undefined
// }
}
if (isExit == undefined) {
this.showMessage("箱码【" + packingNumber + "】、批次【" + batch + "】不在列表中")
} else {
if (isExit.scaned) {
this.showMessage("箱码【" + packingNumber + "】已经扫描")
this.showMessage("箱码【" + packingNumber + "】已经扫描");
} else {
isExit.scaned = true
isExit.handleQty = Number(result.label.qty);
@ -349,12 +360,14 @@
this.showMessage("箱码【" + packingNumber + "】已经扫描")
} else {
itemDetail.scaned = true;
this.detailSource[0].subList.sort(compareAsc('scaned')); //
itemDetail.scaneDate = new Date();
this.detailSource[0].subList.sort(compareAsc('scaneDate')); //
itemDetail.handleQty = Number(result.label.qty);
itemDetail.toLocationCode = this.toLocationCode;
itemDetail.labelQty = Number(result.label.qty);
itemDetail.packList.forEach(pac => {
pac.scaned = true
itemDetail.scaneDate = new Date();
pac.handleQty = Number(pac.qty);
pac.toLocationCode = this.toLocationCode;
})

Loading…
Cancel
Save