|
@ -7,7 +7,11 @@ |
|
|
<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;">{{locationCode}}</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> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
@ -45,6 +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" |
|
|
: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> |
|
@ -128,8 +133,8 @@ |
|
|
index: 0, |
|
|
index: 0, |
|
|
dataList: [], |
|
|
dataList: [], |
|
|
managementList: [], |
|
|
managementList: [], |
|
|
managementType: '', |
|
|
isOpen: false, |
|
|
isOpen: false |
|
|
manageMode:"" |
|
|
|
|
|
|
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
@ -165,7 +170,15 @@ |
|
|
|
|
|
|
|
|
computed() {}, |
|
|
computed() {}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
getManageMode(value){ |
|
|
|
|
|
var manageMode="" |
|
|
|
|
|
if(value=='BY_BATCH'){ |
|
|
|
|
|
manageMode="按批次" |
|
|
|
|
|
}else if(value=='BY_QUANTITY') { |
|
|
|
|
|
manageMode="按数量" |
|
|
|
|
|
} |
|
|
|
|
|
return manageMode |
|
|
|
|
|
}, |
|
|
getDetail() { |
|
|
getDetail() { |
|
|
var that = this; |
|
|
var that = this; |
|
|
uni.showLoading({ |
|
|
uni.showLoading({ |
|
@ -179,6 +192,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.locationCode = that.jobContent.locationCode; |
|
|
that.locationCode = that.jobContent.locationCode; |
|
|
|
|
|
|
|
|
that.dataList = res.data.subList; |
|
|
that.dataList = res.data.subList; |
|
@ -198,19 +212,25 @@ |
|
|
refreshData(recordList) { |
|
|
refreshData(recordList) { |
|
|
//记录的数据刷新列表 |
|
|
//记录的数据刷新列表 |
|
|
var addList = [] |
|
|
var addList = [] |
|
|
|
|
|
recordList.forEach(subItem => { |
|
|
this.dataList.forEach(mainItem => { |
|
|
|
|
|
mainItem.recordList = []; |
|
|
if(this.manageMode=="BY_BATCH"){ |
|
|
recordList.forEach(subItem => { |
|
|
let mainItem = this.dataList.find(r => |
|
|
//在主表中,添加到recordList |
|
|
r.itemCode == subItem.itemCode && |
|
|
if (mainItem.itemCode == subItem.itemCode && |
|
|
r.batch == subItem.batch && |
|
|
mainItem.batch == subItem.batch && |
|
|
r.inventoryStatus == subItem.inventoryStatus) |
|
|
mainItem.inventoryStatus == subItem.inventoryStatus) |
|
|
//主列表存在数据 |
|
|
{ |
|
|
if (mainItem) { |
|
|
|
|
|
mainItem.scaned = true; |
|
|
|
|
|
mainItem.recordList = [] |
|
|
mainItem.recordList.push(subItem) |
|
|
mainItem.recordList.push(subItem) |
|
|
}else { |
|
|
} else { |
|
|
//不在主表中,添加主表明细 |
|
|
//主列表不存在数据,添加到主列表 |
|
|
var detail = this.createBackAddDetailInfo(subItem) |
|
|
var detail = this.createBackAddDetailInfo(subItem) |
|
|
|
|
|
|
|
|
|
|
|
if (!detail.recordList) { |
|
|
|
|
|
detail.recordList = [] |
|
|
|
|
|
} |
|
|
var recordItem = { |
|
|
var recordItem = { |
|
|
scaned: true, |
|
|
scaned: true, |
|
|
isNewJobDetail: "true", |
|
|
isNewJobDetail: "true", |
|
@ -231,18 +251,59 @@ |
|
|
balanceQty: subItem.balanceQty, |
|
|
balanceQty: subItem.balanceQty, |
|
|
locationCode: subItem.locationCode |
|
|
locationCode: subItem.locationCode |
|
|
} |
|
|
} |
|
|
detail.recordList=[]; |
|
|
|
|
|
detail.recordList.push(recordItem) |
|
|
detail.recordList.push(recordItem) |
|
|
addList.push(detail) |
|
|
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 = [] |
|
|
|
|
|
} |
|
|
|
|
|
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) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
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); |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
@ -307,11 +368,10 @@ |
|
|
var batch = result.label.batch |
|
|
var batch = result.label.batch |
|
|
var inventoryStatus = result.balance ? result.balance.inventoryStatus : "OK" |
|
|
var inventoryStatus = result.balance ? result.balance.inventoryStatus : "OK" |
|
|
var qty = result.balance ? result.balance.qty : 0; |
|
|
var qty = result.balance ? result.balance.qty : 0; |
|
|
var handleQty =qty!=0?qty:result.label.qty |
|
|
var handleQty = result.label.qty |
|
|
|
|
|
|
|
|
var uom = pack.uom |
|
|
var uom = pack.uom |
|
|
var locationCode = this.locationCode |
|
|
var locationCode = this.locationCode |
|
|
this.managementType = managementPrecision; |
|
|
|
|
|
|
|
|
|
|
|
var recordItem = { |
|
|
var recordItem = { |
|
|
scaned: true, |
|
|
scaned: true, |
|
@ -344,7 +404,7 @@ |
|
|
if (this.isOpen) { |
|
|
if (this.isOpen) { |
|
|
this.isOpen = false |
|
|
this.isOpen = false |
|
|
//按批次管理 |
|
|
//按批次管理 |
|
|
if (this.managementType == 'BY_BATCH') { |
|
|
if (this.manageMode == 'BY_BATCH') { |
|
|
//按物料、箱码、批次、状态匹配 |
|
|
//按物料、箱码、批次、状态匹配 |
|
|
let mainItem = this.dataList.find(r => |
|
|
let mainItem = this.dataList.find(r => |
|
|
r.itemCode == scanItem.itemCode && |
|
|
r.itemCode == scanItem.itemCode && |
|
@ -398,11 +458,10 @@ |
|
|
detail.recordList.unshift(scanItem) |
|
|
detail.recordList.unshift(scanItem) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.dataList.unshift(detail) |
|
|
this.dataList.unshift(detail) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} else if (this.managementType == 'BY_QUANTITY') { |
|
|
} else if (this.manageMode == 'BY_QUANTITY') { |
|
|
let item = this.dataList.find(r => |
|
|
let item = this.dataList.find(r => |
|
|
r.itemCode == scanItem.itemCode && |
|
|
r.itemCode == scanItem.itemCode && |
|
|
r.locationCode == scanItem.locationCode && |
|
|
r.locationCode == scanItem.locationCode && |
|
@ -420,10 +479,11 @@ |
|
|
res.locatioCode == scanItem.locatioCode && |
|
|
res.locatioCode == scanItem.locatioCode && |
|
|
res.inventoryStatus == scanItem.inventoryStatus |
|
|
res.inventoryStatus == scanItem.inventoryStatus |
|
|
) |
|
|
) |
|
|
subItem.toPackingNumber = "", |
|
|
|
|
|
subItem.toBatch = "" |
|
|
|
|
|
//已经存在,数量累加 |
|
|
//已经存在,数量累加 |
|
|
if (subItem) { |
|
|
if (subItem) { |
|
|
|
|
|
subItem.toPackingNumber = "", |
|
|
|
|
|
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) |
|
@ -443,10 +503,11 @@ |
|
|
res.batch == scanItem.batch && |
|
|
res.batch == scanItem.batch && |
|
|
res.inventoryStatus == scanItem.inventoryStatus |
|
|
res.inventoryStatus == scanItem.inventoryStatus |
|
|
) |
|
|
) |
|
|
subItem.toPackingNumber = "", |
|
|
|
|
|
subItem.toBatch = "" |
|
|
|
|
|
//已经存在,数量累加 |
|
|
//已经存在,数量累加 |
|
|
if (subItem) { |
|
|
if (subItem) { |
|
|
|
|
|
subItem.toPackingNumber = "", |
|
|
|
|
|
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) |
|
|