You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
435 lines
13 KiB
435 lines
13 KiB
<template>
|
|
<view class="page-wraper">
|
|
<view class="page-header">
|
|
<view class="page-header-box">
|
|
<view class="header_job_top">
|
|
<job-top :dataContent="jobContent"></job-top>
|
|
</view>
|
|
<view class="header_item">
|
|
<work-station :workshopCode="jobContent.workShopCode" :productionLineCode="jobContent.detailProductionLineCode" :workStationCode="jobContent.detailWorkStationCode" :rawLocationCode="jobContent.detailToLocationCode"> </work-station>
|
|
<!-- <view class="header_item">
|
|
申请单号 : {{jobContent.requestNumber}}
|
|
</view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="page-main">
|
|
<scroll-view scroll-y="true" class="page-main-scroll">
|
|
<view v-for="(toLocation, index) in detailSource">
|
|
<!-- <view class="u-p-20">
|
|
<work-station :workshopCode="jobContent.workShopCode" :productionLineCode="toLocation.productionLineCode" :workStationCode="toLocation.workStationCode" :rawLocationCode="toLocation.toLocationCode"> </work-station>
|
|
</view> -->
|
|
<com-issue-detail-card ref="comIssueDetailCardRef" :dataContent="toLocation" @updateData="updateData"> </com-issue-detail-card>
|
|
<view class="split_line"></view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
|
|
<view class="page-footer">
|
|
<view class="uni-flex u-col-center space-between padding_20" style="background-color: ghostwhite; width: 100%">
|
|
<button class="btn_single_commit" hover-class="btn_commit_after" style="flex: 1" @click="submit()">提交</button>
|
|
</view>
|
|
</view>
|
|
|
|
<win-scan-button @goScan="openScanDetailPopup"></win-scan-button>
|
|
<com-scan-issue-pack ref="comScanIssuePackRef" @closeScan="closeScan" @updateData="updateData" @afterScan="afterScan"> </com-scan-issue-pack>
|
|
<com-message ref="comMessageRef" />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, getCurrentInstance, nextTick } from 'vue'
|
|
import { onLoad, onShow, onNavigationBarButtonTap, onReady, onBackPress, onReachBottom, onPullDownRefresh } from '@dcloudio/uni-app'
|
|
import { takeIssueJob, cancleTakeIssueJob, getIssueJobDetail, issueJobSubmit } from '@/api/request2.js'
|
|
|
|
import { goHome, navigateBack, getRemoveOption, getCurrDateTime, getDirectoryItemArray, getPackingNumberAndBatch, deepCopyData } from '@/common/basic.js'
|
|
|
|
import { getDataSource } from '@/pages/issue/js/issue.js'
|
|
|
|
import { getManagementPrecisions } from '@/common/balance.js'
|
|
|
|
import { calc } from '@/common/calc.js'
|
|
|
|
import jobDetailPopup from '@/mycomponents/job/jobDetailPopup.vue'
|
|
import comIssueDetailCard from '@/pages/issue/coms/comIssueDetailCard.vue'
|
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue'
|
|
import comScanIssuePack from '@/pages/issue/coms/comScanIssuePack.vue'
|
|
import jobTop from '@/mycomponents/job/jobTop.vue'
|
|
import workStation from '@/mycomponents/workStation/workStation.vue'
|
|
import { useCountStore } from '@/store'
|
|
// 获取自定义的store
|
|
const store = useCountStore()
|
|
const { proxy } = getCurrentInstance()
|
|
const id = ref('')
|
|
const jobContent = ref({}) // 任务内容
|
|
const subList = ref([]) // 接口返回的任务subList
|
|
const detailSource = ref([]) // 绑定在页面上的数据源
|
|
const detailOptions = ref([])
|
|
const scanOptions = ref([])
|
|
const jobStatus = ref('')
|
|
const scanMessage = ref('')
|
|
const scanPopup = ref()
|
|
const comScanIssuePackRef = ref()
|
|
const comMessageRef = ref()
|
|
const managementList = ref([])
|
|
|
|
const comIssueDetailCardRef = ref()
|
|
onLoad((option) => {
|
|
uni.setNavigationBarTitle({
|
|
title: `${option.title}详情`
|
|
})
|
|
id.value = option.id
|
|
scanMessage.value = option.scanMessage
|
|
if (id.value != undefined) {
|
|
// 新建的任务自动接收
|
|
if (option.status == '1') {
|
|
receive((callback) => {
|
|
getDetail()
|
|
})
|
|
} else {
|
|
getDetail()
|
|
}
|
|
}
|
|
})
|
|
// 返回首页
|
|
onNavigationBarButtonTap((e) => {
|
|
if (e.index === 0) {
|
|
goHome()
|
|
}
|
|
})
|
|
// 拦截返回按钮事件
|
|
onBackPress((e) => {
|
|
// 已经接收但是没提交任务
|
|
if (e.from == 'backbutton') {
|
|
if (jobStatus.value == '2') {
|
|
// 取消承接任务
|
|
cancleTakeIssueJob(id.value)
|
|
.then((res) => {
|
|
uni.navigateBack()
|
|
})
|
|
.catch((error) => {
|
|
uni.navigateBack()
|
|
})
|
|
} else {
|
|
uni.navigateBack()
|
|
}
|
|
return true
|
|
}
|
|
})
|
|
const resizeCollapse = () => {
|
|
nextTick((r) => {
|
|
comIssueDetailCardRef.value.forEach((r) => {
|
|
r.resizeCollapse()
|
|
})
|
|
})
|
|
}
|
|
|
|
const receive = (callback) => {
|
|
if (id.value != null) {
|
|
takeIssueJob(id.value)
|
|
.then((res) => {
|
|
callback()
|
|
})
|
|
.catch((error) => {
|
|
showErrorMessage(error)
|
|
})
|
|
}
|
|
}
|
|
const getDetail = () => {
|
|
proxy.$modal.loading('加载中....')
|
|
getIssueJobDetail(id.value)
|
|
.then((res) => {
|
|
uni.hideLoading()
|
|
if (res.data == null) {
|
|
showMessage('未获取到详情')
|
|
} else if (res.data.subList.length > 0) {
|
|
jobContent.value = res.data
|
|
jobStatus.value = res.data.status
|
|
subList.value = res.data.subList
|
|
detailSource.value = getDataSource(detailSource.value, subList.value)
|
|
jobContent.value.detailToLocationCode = res.data.subList[0].toLocationCode
|
|
// 任务中已经扫描,模拟扫描赋值
|
|
if (scanMessage.value) {
|
|
openScanPopupSimulate(scanMessage.value)
|
|
}
|
|
setTimeout((r) => {
|
|
resizeCollapse()
|
|
}, 100)
|
|
|
|
uni.hideLoading()
|
|
} else {
|
|
showMessage('列表数据为0')
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
uni.hideLoading()
|
|
showErrorMessage(error)
|
|
})
|
|
}
|
|
const closeScan = () => {
|
|
resizeCollapse()
|
|
}
|
|
const submit = () => {
|
|
proxy.$modal.loading('提交中....')
|
|
|
|
// 目前任务只到一个库位
|
|
const itemCodes = []
|
|
const locationCode = detailSource.value[0].toLocationCode
|
|
detailSource.value.forEach((toLocation) => {
|
|
toLocation.Items.forEach((item) => {
|
|
itemCodes.push(item.itemCode)
|
|
})
|
|
})
|
|
|
|
// 获取管理模式,封装参数
|
|
getManagementPrecisions(itemCodes, locationCode, (res) => {
|
|
if (res.success) {
|
|
managementList.value = res.list
|
|
submitJob()
|
|
} else {
|
|
uni.hideLoading()
|
|
showErrorMessage(res.message)
|
|
}
|
|
})
|
|
}
|
|
|
|
const submitJob = () => {
|
|
const params = setParams()
|
|
if (!params.subList || params.subList.length == 0) {
|
|
uni.hideLoading()
|
|
showErrorMessage('请扫描您需要提交的发料任务')
|
|
return
|
|
}
|
|
issueJobSubmit(params)
|
|
.then((res) => {
|
|
uni.hideLoading()
|
|
if (res.data) {
|
|
showCommitSuccessMessage(`提交成功<br>生成发料记录<br>${res.data}`)
|
|
} else {
|
|
showErrorMessage(`提交失败[${res.msg}]`)
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
uni.hideLoading()
|
|
showErrorMessage(error)
|
|
})
|
|
}
|
|
|
|
const setParams = () => {
|
|
const subList = []
|
|
const createTime = getCurrDateTime()
|
|
const creator = store.id
|
|
detailSource.value.forEach((toLocationCode) => {
|
|
toLocationCode.Items.forEach((item) => {
|
|
item.Locations.forEach((fromLocation) => {
|
|
fromLocation.Batchs.forEach((batch) => {
|
|
const subItem = batch.detail
|
|
if (subItem != undefined) {
|
|
subItem.recordList = []
|
|
if (batch.Records.length > 0) {
|
|
batch.Records.forEach((r) => {
|
|
const record = {}
|
|
record.handleQty = r.qty
|
|
|
|
record.fromPackingNumber = r.packingNumber
|
|
record.fromBatch = r.batch
|
|
record.fromContainerNumber = r.ContainerNumber
|
|
|
|
record.toContainerNumber = r.ContainerNumber
|
|
record.toInventoryStatus = r.inventoryStatus
|
|
record.toLocationCode = subItem.toLocationCode
|
|
record.supplierCode = r.supplierCode
|
|
|
|
const single_price = r.balance.singlePrice == null ? 0 : r.balance.singlePrice
|
|
|
|
record.singlePrice = single_price
|
|
record.amount = single_price * r.qty
|
|
|
|
// 使用在途库不改变管理模式
|
|
if (item.onTheWayLocationCode) {
|
|
record.toPackingNumber = r.packingNumber
|
|
record.toBatch = r.batch
|
|
} else {
|
|
const info = getPackingNumberAndBatch(managementList.value, r.itemCode, r.packingNumber, r.batch)
|
|
record.toPackingNumber = info.packingNumber
|
|
record.toBatch = info.batch
|
|
}
|
|
record.fromParentPackingNumber = r.parentPackingNumber
|
|
subItem.recordList.push(record)
|
|
})
|
|
subList.push(deepCopyData(subItem))
|
|
}
|
|
}
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
jobContent.value.subList = subList
|
|
jobContent.value.createTime = createTime
|
|
jobContent.value.creator = creator
|
|
return jobContent.value
|
|
}
|
|
const cancel = () => {
|
|
comMessageRef.value.showQuestionMessage('是否要清空已扫描的物料和目标库位信息?', (res) => {
|
|
if (res) {
|
|
clearInfo()
|
|
}
|
|
})
|
|
}
|
|
const clearInfo = () => {
|
|
dataContent.value.itemCodeList.forEach((res) => {
|
|
if (res.recommendList != null) {
|
|
res.recommendList.forEach((res1) => {
|
|
if (res1.locationCodeList != null) {
|
|
res1.locationCodeList.forEach((res2) => {
|
|
if (res2.packingCodeList != null) {
|
|
res2.packingCodeList.forEach((res3) => {
|
|
res3.itemCode = ''
|
|
res3.qty = 0
|
|
})
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
})
|
|
}
|
|
const updateData = (record) => {
|
|
const requestLocation = detailSource.value.find((r) => r.toLocationCode == record.toLocationCode)
|
|
const item = requestLocation.Items.find((r) => r.itemCode == record.itemCode)
|
|
let itemHandleQty = 0
|
|
if (item != undefined) {
|
|
item.Locations.forEach((l) => {
|
|
const batch = l.Batchs.find((b) => (b.packingNumber == record.packingNumber || b.packingNumber == null || b.packingNumber == '') && b.batch == record.batch)
|
|
let handleQty = 0
|
|
if (batch != undefined) {
|
|
batch.Records.forEach((res) => {
|
|
handleQty = calc.add(handleQty, res.qty)
|
|
})
|
|
batch.handleQty = handleQty
|
|
itemHandleQty = calc.add(itemHandleQty, handleQty)
|
|
}
|
|
})
|
|
}
|
|
resizeCollapse()
|
|
item.handleQty = itemHandleQty
|
|
}
|
|
const afterScan = () => {
|
|
resizeCollapse()
|
|
detailSource.value.forEach((detail) => {
|
|
const s = ''
|
|
detail.Items.forEach((item) => {
|
|
let totalHandleQty = 0
|
|
let isHandleEmpty = false // 多个库位时 handleQty =0;
|
|
item.Locations.forEach((lco) => {
|
|
lco.Batchs.forEach((batch) => {
|
|
if (batch.handleQty != 0) {
|
|
totalHandleQty = calc.add(totalHandleQty, batch.handleQty)
|
|
} else {
|
|
isHandleEmpty = true
|
|
}
|
|
})
|
|
})
|
|
if (item.qty == totalHandleQty) {
|
|
if (isHandleEmpty) {
|
|
return
|
|
}
|
|
submit()
|
|
} else {
|
|
comMessageRef.value.showQuestionMessage(`实际扫描数量【${totalHandleQty}】与物料需求数量【${item.qty}】不一致,是否继续提交`, (res) => {
|
|
if (res) {
|
|
submit()
|
|
}
|
|
})
|
|
}
|
|
})
|
|
})
|
|
}
|
|
const scanPopupGetFocus = () => {
|
|
if (!scanPopup.value) {
|
|
scanPopup.value.getfocus()
|
|
}
|
|
}
|
|
const showMessage = (message) => {
|
|
comMessageRef.value.showMessage(message, (res) => {
|
|
afterCloseMessage()
|
|
})
|
|
}
|
|
const showErrorMessage = (message) => {
|
|
comMessageRef.value.showErrorMessage(message, (res) => {
|
|
afterCloseMessage()
|
|
})
|
|
}
|
|
|
|
const showScanMessage = (message) => {
|
|
comMessageRef.value.showScanMessage(message)
|
|
}
|
|
const showCommitSuccess = () => {
|
|
comMessageRef.value.showCommitSuccess()
|
|
}
|
|
const showCommitSuccessMessage = (hint) => {
|
|
comMessageRef.value.showSuccessMessage(hint, (res) => {
|
|
navigateBack(1)
|
|
})
|
|
}
|
|
const showRescanMessage = (message) => {
|
|
comMessageRef.value.showRescanMessage(message)
|
|
}
|
|
|
|
const afterCloseMessage = () => {
|
|
scanPopupGetFocus()
|
|
}
|
|
|
|
const closeScanMessage = () => {
|
|
scanPopupGetFocus()
|
|
}
|
|
const confirm = (data) => {
|
|
dataContent.value = data
|
|
}
|
|
const confirmResult = (result) => {
|
|
dataContent.value = result
|
|
}
|
|
const openScanDetailPopup = () => {
|
|
const datacontent = {}
|
|
// 克隆对象,深度克隆,防止双向绑定同一个变量
|
|
// Object.assign(datacontent, this.detailSource);
|
|
comScanIssuePackRef.value.openScanPopup(detailSource.value, jobContent.value)
|
|
}
|
|
const openScanPopupSimulate = (scanMessage) => {
|
|
comScanIssuePackRef.value.openScanPopupForJobSimulate(detailSource.value, jobContent.value, scanMessage)
|
|
}
|
|
const closeScanPopup = () => {
|
|
updateCommitBtn()
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.uni-numbox__value {
|
|
width: 40px;
|
|
}
|
|
|
|
button[disabled] {
|
|
background-color: #3c9cff;
|
|
color: #fff;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
// /deep/ .input-value {
|
|
// font-size: 16px;
|
|
// }
|
|
|
|
// /deep/ .uni-collapse-item__title-text {
|
|
// font-size: 16px;
|
|
// }
|
|
|
|
// /deep/ .uni-collapse-item--border {
|
|
// border-bottom-width: 0px;
|
|
// border-bottom-color: #ebeef5;
|
|
// }
|
|
|
|
// /deep/ .uni-collapse-item--border {
|
|
// border-bottom-width: 1px;
|
|
// border-bottom-color: #ebeef5;
|
|
// }
|
|
</style>
|
|
|