|
@ -8,10 +8,12 @@ |
|
|
<scroll-view scroll-y="true" class=""> |
|
|
<scroll-view scroll-y="true" class=""> |
|
|
<view v-for="(toLocation, index) in detailSource"> |
|
|
<view v-for="(toLocation, index) in detailSource"> |
|
|
<view class="uni-row uni-flex"> |
|
|
<view class="uni-row uni-flex"> |
|
|
<!-- <com-issue-request-info :workShopCode="workShopCode" :dataContent="toLocation"> |
|
|
<!-- <com-issue-request-info :workShopCode="workShopCode" :dataContent="toLocation"> |
|
|
</com-issue-request-info> --> |
|
|
</com-issue-request-info> --> |
|
|
<work-station :workshopCode="workShopCode" :productionLineCode="toLocation.productionLineCode" |
|
|
<work-station :workshopCode="workShopCode" |
|
|
:workStationCode="toLocation.workStationCode" :rawLocationCode="toLocation.toLocationCode"></work-station> |
|
|
:productionLineCode="toLocation.productionLineCode" |
|
|
|
|
|
:workStationCode="toLocation.workStationCode" |
|
|
|
|
|
:rawLocationCode="toLocation.toLocationCode"></work-station> |
|
|
</view> |
|
|
</view> |
|
|
<com-issue-detail-card ref='comIssueDetailCard' :dataContent="toLocation" |
|
|
<com-issue-detail-card ref='comIssueDetailCard' :dataContent="toLocation" |
|
|
@updateData='updateData'> |
|
|
@updateData='updateData'> |
|
@ -61,7 +63,7 @@ |
|
|
import { |
|
|
import { |
|
|
calc |
|
|
calc |
|
|
} from '@/common/calc.js'; |
|
|
} from '@/common/calc.js'; |
|
|
|
|
|
|
|
|
import { |
|
|
import { |
|
|
getManagementPrecisions |
|
|
getManagementPrecisions |
|
|
} from '@/common/balance.js'; |
|
|
} from '@/common/balance.js'; |
|
@ -76,7 +78,7 @@ |
|
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue' |
|
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue' |
|
|
import comScanIssuePack from '@/pages/issue/coms/comScanIssuePack.vue' |
|
|
import comScanIssuePack from '@/pages/issue/coms/comScanIssuePack.vue' |
|
|
import workStation from '@/mycomponents/workStation/workStation.vue' |
|
|
import workStation from '@/mycomponents/workStation/workStation.vue' |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: '', |
|
|
name: '', |
|
|
components: { |
|
|
components: { |
|
@ -101,8 +103,8 @@ |
|
|
fromInventoryStatuses: "", |
|
|
fromInventoryStatuses: "", |
|
|
toInventoryStatuses: "", |
|
|
toInventoryStatuses: "", |
|
|
requestList: [], |
|
|
requestList: [], |
|
|
dataContent:{}, |
|
|
dataContent: {}, |
|
|
managementList:[] |
|
|
managementList: [] |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
mounted() { |
|
|
mounted() { |
|
@ -212,7 +214,7 @@ |
|
|
caclcQty() { |
|
|
caclcQty() { |
|
|
var totalQty = 0; |
|
|
var totalQty = 0; |
|
|
this.detailSource.subList.forEach(res => { |
|
|
this.detailSource.subList.forEach(res => { |
|
|
totalQty = calc.add(totalQty,res.qty); |
|
|
totalQty = calc.add(totalQty, res.qty); |
|
|
}) |
|
|
}) |
|
|
this.detailSource.totalQty = totalQty; |
|
|
this.detailSource.totalQty = totalQty; |
|
|
}, |
|
|
}, |
|
@ -244,10 +246,10 @@ |
|
|
let handleQty = 0; |
|
|
let handleQty = 0; |
|
|
if (batch != undefined) { |
|
|
if (batch != undefined) { |
|
|
batch.Records.forEach(res => { |
|
|
batch.Records.forEach(res => { |
|
|
handleQty = calc.add(handleQty,res.qty); |
|
|
handleQty = calc.add(handleQty, res.qty); |
|
|
}) |
|
|
}) |
|
|
batch.handleQty = handleQty; |
|
|
batch.handleQty = handleQty; |
|
|
itemHandleQty = calc.add(itemHandleQty,handleQty) |
|
|
itemHandleQty = calc.add(itemHandleQty, handleQty) |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
@ -270,31 +272,39 @@ |
|
|
batch.Records.forEach(r => { |
|
|
batch.Records.forEach(r => { |
|
|
let record = {}; |
|
|
let record = {}; |
|
|
record.handleQty = r.qty; |
|
|
record.handleQty = r.qty; |
|
|
|
|
|
|
|
|
record.fromPackingNumber = r |
|
|
record.fromPackingNumber = r |
|
|
.packingNumber; |
|
|
.packingNumber; |
|
|
record.fromBatch = r.batch; |
|
|
record.fromBatch = r.batch; |
|
|
record.fromContainerNumber = r |
|
|
record.fromContainerNumber = r |
|
|
.ContainerNumber; |
|
|
.ContainerNumber; |
|
|
|
|
|
|
|
|
record.toContainerNumber = r |
|
|
record.toContainerNumber = r |
|
|
.ContainerNumber; |
|
|
.ContainerNumber; |
|
|
record.toInventoryStatus = r |
|
|
record.toInventoryStatus = r |
|
|
.inventoryStatus; |
|
|
.inventoryStatus; |
|
|
record.toLocationCode = subItem |
|
|
record.toLocationCode = subItem |
|
|
.toLocationCode; |
|
|
.toLocationCode; |
|
|
record.fromLocationCode = fromLocation.fromLocationCode |
|
|
record.fromLocationCode = fromLocation |
|
|
|
|
|
.fromLocationCode |
|
|
record.supplierCode = r.supplierCode; |
|
|
record.supplierCode = r.supplierCode; |
|
|
|
|
|
|
|
|
|
|
|
let single_price = r.singlePrice == null ? |
|
|
|
|
|
0 : r.singlePrice; |
|
|
|
|
|
|
|
|
|
|
|
record.singlePrice = single_price; |
|
|
|
|
|
record.amount = single_price * r.qty; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//使用在途库不改变管理模式 |
|
|
//使用在途库不改变管理模式 |
|
|
var info = getPackingNumberAndBatch( |
|
|
var info = getPackingNumberAndBatch( |
|
|
this.managementList, r |
|
|
this.managementList, r |
|
|
.itemCode, |
|
|
.itemCode, |
|
|
r.packingNumber, r |
|
|
r.packingNumber, r |
|
|
.batch); |
|
|
.batch); |
|
|
record.toPackingNumber = info |
|
|
record.toPackingNumber = info |
|
|
.packingNumber; |
|
|
.packingNumber; |
|
|
record.toBatch = info.batch; |
|
|
record.toBatch = info.batch; |
|
|
subItem.recordList.push(record); |
|
|
subItem.recordList.push(record); |
|
|
}) |
|
|
}) |
|
|
subList.push(subItem); |
|
|
subList.push(subItem); |
|
@ -303,7 +313,7 @@ |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
this.dataContent.subList = subList |
|
|
this.dataContent.subList = subList |
|
|
this.dataContent.createTime = createTime; |
|
|
this.dataContent.createTime = createTime; |
|
|
this.dataContent.creator = creator; |
|
|
this.dataContent.creator = creator; |
|
@ -314,7 +324,7 @@ |
|
|
title: "提交中....", |
|
|
title: "提交中....", |
|
|
mask: true |
|
|
mask: true |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
//目前任务只到一个库位 |
|
|
//目前任务只到一个库位 |
|
|
var itemCodes = [] |
|
|
var itemCodes = [] |
|
|
let locationCode = this.detailSource[0].toLocationCode |
|
|
let locationCode = this.detailSource[0].toLocationCode |
|
@ -323,7 +333,7 @@ |
|
|
itemCodes.push(item.itemCode) |
|
|
itemCodes.push(item.itemCode) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
//获取管理模式,封装参数 |
|
|
//获取管理模式,封装参数 |
|
|
getManagementPrecisions(itemCodes, locationCode, res => { |
|
|
getManagementPrecisions(itemCodes, locationCode, res => { |
|
|
if (res.success) { |
|
|
if (res.success) { |
|
@ -336,11 +346,11 @@ |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
submitJob() { |
|
|
submitJob() { |
|
|
var params = this.setParams() |
|
|
var params = this.setParams() |
|
|
console.log("提交参数", JSON.stringify(params)); |
|
|
console.log("提交参数", JSON.stringify(params)); |
|
|
|
|
|
|
|
|
issueRecordSubmit(params).then(res => { |
|
|
issueRecordSubmit(params).then(res => { |
|
|
uni.hideLoading() |
|
|
uni.hideLoading() |
|
|
if (res.data) { |
|
|
if (res.data) { |
|
@ -353,20 +363,20 @@ |
|
|
this.showErrorMessage(error) |
|
|
this.showErrorMessage(error) |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
showCommitSuccessMessage(hint) { |
|
|
showCommitSuccessMessage(hint) { |
|
|
this.$refs.comMessage.showSuccessMessage(hint, res => { |
|
|
this.$refs.comMessage.showSuccessMessage(hint, res => { |
|
|
this.clearData(); |
|
|
this.clearData(); |
|
|
|
|
|
|
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
clearData(){ |
|
|
clearData() { |
|
|
this.detailSource =[]; |
|
|
this.detailSource = []; |
|
|
this.requestList=[]; |
|
|
this.requestList = []; |
|
|
this.dataContent ={} |
|
|
this.dataContent = {} |
|
|
this.managementList=[] |
|
|
this.managementList = [] |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
showMessage(message) { |
|
|
showMessage(message) { |
|
|
this.$refs.comMessage.showMessage(message, res => { |
|
|
this.$refs.comMessage.showMessage(message, res => { |
|
|
if (res) { |
|
|
if (res) { |
|
|