|
@ -8,7 +8,7 @@ |
|
|
<text style=" font-size: 32rpx; color: #6750F1">库位代码 </text> |
|
|
<text style=" font-size: 32rpx; color: #6750F1">库位代码 </text> |
|
|
<text style="font-size: 35rpx; font-weight: bold;">{{locationCode}}</text> |
|
|
<text style="font-size: 35rpx; font-weight: bold;">{{locationCode}}</text> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
<view class="" style="margin-left: 10rpx; margin-top: 10rpx;margin-bottom: 10rpx;"> |
|
|
<view class="" style="margin-left: 10rpx; margin-top: 10rpx;margin-bottom: 10rpx;"> |
|
|
<text style=" font-size: 32rpx; color: #6750F1">管理精度 </text> |
|
|
<text style=" font-size: 32rpx; color: #6750F1">管理精度 </text> |
|
|
<text style="font-size: 35rpx; font-weight: bold;">{{getManageMode(manageMode)}}</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-button @goScan='openScanPopup'></win-scan-button> |
|
|
<win-scan-pack-and-location :allowModifyLocation="false" ref="scanPopup" :noShowBalanceMessage="true" |
|
|
<win-scan-pack-and-location :allowModifyLocation="false" ref="scanPopup" :noShowBalanceMessage="true" |
|
|
:pdaCountBalanceQuery="true" |
|
|
:pdaCountBalanceQuery="true" :isShowHistory="false" @getCountScanResult='getCountScanResult'> |
|
|
:isShowHistory="false" @getCountScanResult='getCountScanResult'> |
|
|
|
|
|
</win-scan-pack-and-location> |
|
|
</win-scan-pack-and-location> |
|
|
<detail-info-popup ref="detailInfoPopup"></detail-info-popup> |
|
|
<detail-info-popup ref="detailInfoPopup"></detail-info-popup> |
|
|
<count-qty-edit ref="countQtyEdit" @confirm="editConfirm" @close="editClose" :isShowStatus="true" |
|
|
<count-qty-edit ref="countQtyEdit" @confirm="editConfirm" @close="editClose" :isShowStatus="true" |
|
@ -134,7 +133,7 @@ |
|
|
dataList: [], |
|
|
dataList: [], |
|
|
managementList: [], |
|
|
managementList: [], |
|
|
isOpen: false, |
|
|
isOpen: false, |
|
|
manageMode:"" |
|
|
manageMode: "" |
|
|
|
|
|
|
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
@ -170,12 +169,12 @@ |
|
|
|
|
|
|
|
|
computed() {}, |
|
|
computed() {}, |
|
|
methods: { |
|
|
methods: { |
|
|
getManageMode(value){ |
|
|
getManageMode(value) { |
|
|
var manageMode="" |
|
|
var manageMode = "" |
|
|
if(value=='BY_BATCH'){ |
|
|
if (value == 'BY_BATCH') { |
|
|
manageMode="按批次" |
|
|
manageMode = "按批次" |
|
|
}else if(value=='BY_QUANTITY') { |
|
|
} else if (value == 'BY_QUANTITY') { |
|
|
manageMode="按数量" |
|
|
manageMode = "按数量" |
|
|
} |
|
|
} |
|
|
return manageMode |
|
|
return manageMode |
|
|
}, |
|
|
}, |
|
@ -192,7 +191,7 @@ |
|
|
} else { |
|
|
} else { |
|
|
that.jobContent = res.data; |
|
|
that.jobContent = res.data; |
|
|
that.jobContent.status = "2"; |
|
|
that.jobContent.status = "2"; |
|
|
that.manageMode=that.jobContent.manageMode |
|
|
that.manageMode = that.jobContent.manageMode |
|
|
that.locationCode = that.jobContent.locationCode; |
|
|
that.locationCode = that.jobContent.locationCode; |
|
|
|
|
|
|
|
|
that.dataList = res.data.subList; |
|
|
that.dataList = res.data.subList; |
|
@ -209,98 +208,116 @@ |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
refreshData(recordList) { |
|
|
refreshData(returnData) { |
|
|
//记录的数据刷新列表 |
|
|
//记录的数据刷新列表 |
|
|
var addList = [] |
|
|
//列表中删除了已经扫描的数据 |
|
|
recordList.forEach(subItem => { |
|
|
if (returnData.recordList.length == 0) { |
|
|
|
|
|
if (this.manageMode == "BY_BATCH") { |
|
|
if(this.manageMode=="BY_BATCH"){ |
|
|
var mainItem = this.dataList.find(r => |
|
|
let mainItem = this.dataList.find(r => |
|
|
r.itemCode == returnData.itemCode && |
|
|
r.itemCode == subItem.itemCode && |
|
|
r.batch == returnData.batch && |
|
|
r.batch == subItem.batch && |
|
|
r.inventoryStatus == returnData.inventoryStatus) |
|
|
r.inventoryStatus == subItem.inventoryStatus) |
|
|
|
|
|
//主列表存在数据 |
|
|
|
|
|
if (mainItem) { |
|
|
if (mainItem) { |
|
|
mainItem.scaned = true; |
|
|
|
|
|
mainItem.recordList = [] |
|
|
mainItem.recordList = [] |
|
|
mainItem.recordList.push(subItem) |
|
|
} else if (this.manageMode == "BY_QUANTITY") { |
|
|
} else { |
|
|
var mainItem = this.dataList.find(r => |
|
|
//主列表不存在数据,添加到主列表 |
|
|
r.itemCode == returnData.itemCode && |
|
|
var detail = this.createBackAddDetailInfo(subItem) |
|
|
r.inventoryStatus == returnData.inventoryStatus) |
|
|
|
|
|
|
|
|
if (!detail.recordList) { |
|
|
if (mainItem) { |
|
|
detail.recordList = [] |
|
|
mainItem.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) |
|
|
|
|
|
} |
|
|
} |
|
|
}else if(this.manageMode=="BY_QUANTITY"){ |
|
|
} |
|
|
let mainItem = this.dataList.find(r => |
|
|
} else { |
|
|
r.itemCode == subItem.itemCode && |
|
|
var addList = [] |
|
|
r.inventoryStatus == subItem.inventoryStatus) |
|
|
returnData.recordList.forEach(subItem => { |
|
|
//主列表存在数据 |
|
|
|
|
|
if (mainItem) { |
|
|
if (this.manageMode == "BY_BATCH") { |
|
|
mainItem.scaned = true; |
|
|
let mainItem = this.dataList.find(r => |
|
|
mainItem.recordList = [] |
|
|
r.itemCode == subItem.itemCode && |
|
|
mainItem.recordList.push(subItem) |
|
|
r.batch == subItem.batch && |
|
|
} else { |
|
|
r.inventoryStatus == subItem.inventoryStatus) |
|
|
//主列表不存在数据,添加到主列表 |
|
|
//主列表存在数据 |
|
|
var detail = this.createBackAddDetailInfo(subItem) |
|
|
if (mainItem) { |
|
|
|
|
|
mainItem.scaned = true; |
|
|
if (!detail.recordList) { |
|
|
mainItem.recordList = [] |
|
|
detail.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 = { |
|
|
} else if (this.manageMode == "BY_QUANTITY") { |
|
|
scaned: true, |
|
|
var mainItem = this.dataList.find(r => |
|
|
isNewJobDetail: "true", |
|
|
r.itemCode == subItem.itemCode && |
|
|
itemCode: subItem.itemCode, |
|
|
r.inventoryStatus == subItem.inventoryStatus) |
|
|
itemName: subItem.itemName, |
|
|
//主列表存在数据 |
|
|
itemDesc1: subItem.itemDesc1, |
|
|
if (mainItem) { |
|
|
itemDesc2: subItem.itemDesc2, |
|
|
mainItem.scaned = true; |
|
|
packingNumber: subItem.packingNumber, |
|
|
mainItem.recordList = [] |
|
|
toPackingNumber: subItem.toPackingNumber, |
|
|
mainItem.recordList.push(subItem) |
|
|
toBatch: subItem.toBatch, |
|
|
} else { |
|
|
batch: subItem.batch, |
|
|
//主列表不存在数据,添加到主列表 |
|
|
inventoryStatus: subItem.inventoryStatus, |
|
|
var detail = this.createBackAddDetailInfo(subItem) |
|
|
qty: subItem.qty, |
|
|
|
|
|
handleQty: subItem.handleQty, |
|
|
if (!detail.recordList) { |
|
|
uom: subItem.uom, |
|
|
detail.recordList = [] |
|
|
packUnit: subItem.packUnit, |
|
|
} |
|
|
packQty: subItem.packQty, |
|
|
var recordItem = { |
|
|
balanceQty: subItem.balanceQty, |
|
|
scaned: true, |
|
|
locationCode: subItem.locationCode |
|
|
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) { |
|
|
if (addList.length > 0) { |
|
|
this.dataList = this.dataList.concat(addList) |
|
|
this.dataList = this.dataList.concat(addList) |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
this.updateList(false); |
|
|
this.updateList(false); |
|
@ -429,7 +446,7 @@ |
|
|
|
|
|
|
|
|
//已经存在,数量累加 |
|
|
//已经存在,数量累加 |
|
|
if (subItem) { |
|
|
if (subItem) { |
|
|
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(subItem.handleQty)) |
|
|
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty)) |
|
|
} else { |
|
|
} else { |
|
|
mainItem.recordList.unshift(scanItem) |
|
|
mainItem.recordList.unshift(scanItem) |
|
|
} |
|
|
} |
|
@ -483,7 +500,7 @@ |
|
|
//已经存在,数量累加 |
|
|
//已经存在,数量累加 |
|
|
if (subItem) { |
|
|
if (subItem) { |
|
|
subItem.toPackingNumber = "", |
|
|
subItem.toPackingNumber = "", |
|
|
subItem.toBatch = "" |
|
|
subItem.toBatch = "" |
|
|
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty)) |
|
|
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty)) |
|
|
} else { |
|
|
} else { |
|
|
item.recordList.unshift(scanItem) |
|
|
item.recordList.unshift(scanItem) |
|
@ -507,7 +524,7 @@ |
|
|
//已经存在,数量累加 |
|
|
//已经存在,数量累加 |
|
|
if (subItem) { |
|
|
if (subItem) { |
|
|
subItem.toPackingNumber = "", |
|
|
subItem.toPackingNumber = "", |
|
|
subItem.toBatch = "" |
|
|
subItem.toBatch = "" |
|
|
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty)) |
|
|
subItem.handleQty = calc.add(Number(subItem.handleQty), Number(scanItem.handleQty)) |
|
|
} else { |
|
|
} else { |
|
|
detail.recordList.unshift(scanItem) |
|
|
detail.recordList.unshift(scanItem) |
|
@ -570,13 +587,13 @@ |
|
|
|
|
|
|
|
|
calcScanCount() { |
|
|
calcScanCount() { |
|
|
this.dataList.forEach(main => { |
|
|
this.dataList.forEach(main => { |
|
|
|
|
|
var handleQty = 0; |
|
|
if (main.recordList) { |
|
|
if (main.recordList) { |
|
|
var handleQty = 0; |
|
|
|
|
|
main.recordList.forEach(item => { |
|
|
main.recordList.forEach(item => { |
|
|
handleQty = calc.add(handleQty, Number(item.handleQty)) |
|
|
handleQty = calc.add(handleQty, Number(item.handleQty)) |
|
|
}) |
|
|
}) |
|
|
main.currentQty = handleQty |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
main.currentQty = handleQty |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|