Browse Source

修改盘点数量

intex_online20250327
lijuncheng 3 weeks ago
parent
commit
b18ebfac5b
  1. 39
      src/pages/count/job/countLightDetail.vue
  2. 14
      src/pages/count/job/countRecord.vue

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

@ -49,8 +49,7 @@
<win-scan-button @goScan='openScanPopup'></win-scan-button>
<win-scan-pack-and-location :allowModifyLocation="false" ref="scanPopup" :noShowBalanceMessage="true"
:pdaCountBalanceQuery="true"
:isShowHistory="false" @getCountScanResult='getCountScanResult'>
:pdaCountBalanceQuery="true" :isShowHistory="false" @getCountScanResult='getCountScanResult'>
</win-scan-pack-and-location>
<detail-info-popup ref="detailInfoPopup"></detail-info-popup>
<count-qty-edit ref="countQtyEdit" @confirm="editConfirm" @close="editClose" :isShowStatus="true"
@ -209,10 +208,30 @@
})
},
refreshData(recordList) {
refreshData(returnData) {
//
//
if (returnData.recordList.length == 0) {
if (this.manageMode == "BY_BATCH") {
var mainItem = this.dataList.find(r =>
r.itemCode == returnData.itemCode &&
r.batch == returnData.batch &&
r.inventoryStatus == returnData.inventoryStatus)
if (mainItem) {
mainItem.recordList = []
} else if (this.manageMode == "BY_QUANTITY") {
var mainItem = this.dataList.find(r =>
r.itemCode == returnData.itemCode &&
r.inventoryStatus == returnData.inventoryStatus)
if (mainItem) {
mainItem.recordList = []
}
}
}
} else {
var addList = []
recordList.forEach(subItem => {
returnData.recordList.forEach(subItem => {
if (this.manageMode == "BY_BATCH") {
let mainItem = this.dataList.find(r =>
@ -255,7 +274,7 @@
addList.push(detail)
}
} else if (this.manageMode == "BY_QUANTITY") {
let mainItem = this.dataList.find(r =>
var mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.inventoryStatus == subItem.inventoryStatus)
//
@ -295,13 +314,11 @@
}
}
})
if (addList.length > 0) {
this.dataList = this.dataList.concat(addList)
}
}
this.updateList(false);
@ -429,7 +446,7 @@
//
if (subItem) {
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(subItem.handleQty))
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty))
} else {
mainItem.recordList.unshift(scanItem)
}
@ -570,13 +587,13 @@
calcScanCount() {
this.dataList.forEach(main => {
if (main.recordList) {
var handleQty = 0;
if (main.recordList) {
main.recordList.forEach(item => {
handleQty = calc.add(handleQty, Number(item.handleQty))
})
main.currentQty = handleQty
}
main.currentQty = handleQty
})
},

14
src/pages/count/job/countRecord.vue

@ -69,6 +69,8 @@
this.dataContent.itemDesc1=this.dataList[0].itemDesc1;
this.dataContent.itemCode = this.dataList[0].itemCode;
this.dataContent.uom =this.dataList[0].uom;
this.dataContent.batch=this.dataList[0].batch;
this.dataContent.inventoryStatus=this.dataList[0].inventoryStatus;
var handleQty = 0;
this.dataList.forEach(item => {
handleQty = calc.add(Number(handleQty), Number(item.handleQty))
@ -82,7 +84,17 @@
onBackPress(e) {
//
if (e.from === 'backbutton') {
uni.$emit('refreshData',this.dataList);
var dataContent={
locationCode : this.fromLocationCode,
itemName :this.dataContent.itemName,
itemDesc1:this.dataContent.itemDesc1,
itemCode : this.dataContent.itemCode,
uom :this.dataContent.uom,
batch:this.dataContent.batch,
inventoryStatus:this.dataContent.inventoryStatus,
recordList:this.dataList
}
uni.$emit('refreshData', dataContent);
uni.navigateBack();
return true;
}

Loading…
Cancel
Save