Browse Source

修改盘点数量

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

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

@ -8,7 +8,7 @@
<text style=" font-size: 32rpx; color: #6750F1">库位代码 </text>
<text style="font-size: 35rpx; font-weight: bold;">{{locationCode}}</text>
</view>
<view class="" style="margin-left: 10rpx; margin-top: 10rpx;margin-bottom: 10rpx;">
<text style=" font-size: 32rpx; color: #6750F1">管理精度 </text>
<text style="font-size: 35rpx; font-weight: bold;">{{getManageMode(manageMode)}}</text>
@ -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"
@ -134,7 +133,7 @@
dataList: [],
managementList: [],
isOpen: false,
manageMode:""
manageMode: ""
};
},
@ -170,12 +169,12 @@
computed() {},
methods: {
getManageMode(value){
var manageMode=""
if(value=='BY_BATCH'){
manageMode="按批次"
}else if(value=='BY_QUANTITY') {
manageMode="按数量"
getManageMode(value) {
var manageMode = ""
if (value == 'BY_BATCH') {
manageMode = "按批次"
} else if (value == 'BY_QUANTITY') {
manageMode = "按数量"
}
return manageMode
},
@ -192,7 +191,7 @@
} else {
that.jobContent = res.data;
that.jobContent.status = "2";
that.manageMode=that.jobContent.manageMode
that.manageMode = that.jobContent.manageMode
that.locationCode = that.jobContent.locationCode;
that.dataList = res.data.subList;
@ -209,98 +208,116 @@
})
},
refreshData(recordList) {
refreshData(returnData) {
//
var addList = []
recordList.forEach(subItem => {
if(this.manageMode=="BY_BATCH"){
let mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.batch == subItem.batch &&
r.inventoryStatus == subItem.inventoryStatus)
//
//
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.scaned = true;
mainItem.recordList = []
mainItem.recordList.push(subItem)
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) {
detail.recordList = []
}
var recordItem = {
scaned: true,
isNewJobDetail: "true",
itemCode: subItem.itemCode,
itemName: subItem.itemName,
itemDesc1: subItem.itemDesc1,
itemDesc2: subItem.itemDesc2,
packingNumber: subItem.packingNumber,
toPackingNumber: subItem.toPackingNumber,
toBatch: subItem.toBatch,
batch: subItem.batch,
inventoryStatus: subItem.inventoryStatus,
qty: subItem.qty,
handleQty: subItem.handleQty,
uom: subItem.uom,
packUnit: subItem.packUnit,
packQty: subItem.packQty,
balanceQty: subItem.balanceQty,
locationCode: subItem.locationCode
} else if (this.manageMode == "BY_QUANTITY") {
var mainItem = this.dataList.find(r =>
r.itemCode == returnData.itemCode &&
r.inventoryStatus == returnData.inventoryStatus)
if (mainItem) {
mainItem.recordList = []
}
detail.recordList.push(recordItem)
addList.push(detail)
}
}else if(this.manageMode=="BY_QUANTITY"){
let mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.inventoryStatus == subItem.inventoryStatus)
//
if (mainItem) {
mainItem.scaned = true;
mainItem.recordList = []
mainItem.recordList.push(subItem)
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) {
detail.recordList = []
}
} else {
var addList = []
returnData.recordList.forEach(subItem => {
if (this.manageMode == "BY_BATCH") {
let mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.batch == subItem.batch &&
r.inventoryStatus == subItem.inventoryStatus)
//
if (mainItem) {
mainItem.scaned = true;
mainItem.recordList = []
mainItem.recordList.push(subItem)
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) {
detail.recordList = []
}
var recordItem = {
scaned: true,
isNewJobDetail: "true",
itemCode: subItem.itemCode,
itemName: subItem.itemName,
itemDesc1: subItem.itemDesc1,
itemDesc2: subItem.itemDesc2,
packingNumber: subItem.packingNumber,
toPackingNumber: subItem.toPackingNumber,
toBatch: subItem.toBatch,
batch: subItem.batch,
inventoryStatus: subItem.inventoryStatus,
qty: subItem.qty,
handleQty: subItem.handleQty,
uom: subItem.uom,
packUnit: subItem.packUnit,
packQty: subItem.packQty,
balanceQty: subItem.balanceQty,
locationCode: subItem.locationCode
}
detail.recordList.push(recordItem)
addList.push(detail)
}
var recordItem = {
scaned: true,
isNewJobDetail: "true",
itemCode: subItem.itemCode,
itemName: subItem.itemName,
itemDesc1: subItem.itemDesc1,
itemDesc2: subItem.itemDesc2,
packingNumber: subItem.packingNumber,
toPackingNumber: subItem.toPackingNumber,
toBatch: subItem.toBatch,
batch: subItem.batch,
inventoryStatus: subItem.inventoryStatus,
qty: subItem.qty,
handleQty: subItem.handleQty,
uom: subItem.uom,
packUnit: subItem.packUnit,
packQty: subItem.packQty,
balanceQty: subItem.balanceQty,
locationCode: subItem.locationCode
} else if (this.manageMode == "BY_QUANTITY") {
var mainItem = this.dataList.find(r =>
r.itemCode == subItem.itemCode &&
r.inventoryStatus == subItem.inventoryStatus)
//
if (mainItem) {
mainItem.scaned = true;
mainItem.recordList = []
mainItem.recordList.push(subItem)
} else {
//
var detail = this.createBackAddDetailInfo(subItem)
if (!detail.recordList) {
detail.recordList = []
}
var recordItem = {
scaned: true,
isNewJobDetail: "true",
itemCode: subItem.itemCode,
itemName: subItem.itemName,
itemDesc1: subItem.itemDesc1,
itemDesc2: subItem.itemDesc2,
packingNumber: subItem.packingNumber,
toPackingNumber: subItem.toPackingNumber,
toBatch: subItem.toBatch,
batch: subItem.batch,
inventoryStatus: subItem.inventoryStatus,
qty: subItem.qty,
handleQty: subItem.handleQty,
uom: subItem.uom,
packUnit: subItem.packUnit,
packQty: subItem.packQty,
balanceQty: subItem.balanceQty,
locationCode: subItem.locationCode
}
detail.recordList.push(recordItem)
addList.push(detail)
}
detail.recordList.push(recordItem)
addList.push(detail)
}
}
})
if (addList.length > 0) {
this.dataList = this.dataList.concat(addList)
})
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)
}
@ -483,7 +500,7 @@
//
if (subItem) {
subItem.toPackingNumber = "",
subItem.toBatch = ""
subItem.toBatch = ""
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty))
} else {
item.recordList.unshift(scanItem)
@ -507,7 +524,7 @@
//
if (subItem) {
subItem.toPackingNumber = "",
subItem.toBatch = ""
subItem.toBatch = ""
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty))
} else {
detail.recordList.unshift(scanItem)
@ -570,13 +587,13 @@
calcScanCount() {
this.dataList.forEach(main => {
var handleQty = 0;
if (main.recordList) {
var handleQty = 0;
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