Browse Source

mycomponents/page/customerReturn/job 文件迁移 8/8-10/25

pull/1/head
test 5 months ago
parent
commit
668899df83
  1. 173
      src/pages/customerReturn/job/returnDetail.vue
  2. 3
      src/pages/customerReturn/job/returnJob.vue

173
src/pages/customerReturn/job/returnDetail.vue

@ -14,7 +14,16 @@
<scroll-view scroll-y="true" class="page-main-scroll"> <scroll-view scroll-y="true" class="page-main-scroll">
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> <view class="detail-list" v-for="(item, index) in detailSource" :key="item.id">
<view class=""> <view class="">
<com-detail-card :dataContent="item" :settingParam="jobContent" :isShowLocation="false" @remove="updateData" @updateData="updateData" @openDetail="openDetail" :locationAreaTypeList="toLocationAreaTypeList"> </com-detail-card> <comDetailCardBatch :dataContent="item" :settingParam="jobContent" :isShowLocation="false"
@remove="updateData" @updateData="updateData" @openDetail="openDetail"
:locationAreaTypeList="toLocationAreaTypeList" v-if="managementType=='BY_BATCH'">
</comDetailCardBatch>
<comLableDetailCard :dataContent="item" :settingParam="jobContent"
:isShowStatus="false"
:isShowLocation="false"
@remove="updateData" @updateData="updateData" @openDetail="openDetail"
:locationAreaTypeList="toLocationAreaTypeList" v-else>
</comLableDetailCard >
</view> </view>
<view class="split_line"></view> <view class="split_line"></view>
</view> </view>
@ -33,7 +42,7 @@
</view> </view>
<win-scan-button @goScan="openScanPopup"></win-scan-button> <win-scan-button @goScan="openScanPopup"></win-scan-button>
<win-scan-pack-and-location ref="scanPopup" @getResult="getScanResult"></win-scan-pack-and-location> <win-scan-pack ref="scanPopup" @getResult="getScanResult"></win-scan-pack>
<detail-info-popup ref="detailInfoPopupRef"></detail-info-popup> <detail-info-popup ref="detailInfoPopupRef"></detail-info-popup>
<com-message ref="comMessageRef" /> <com-message ref="comMessageRef" />
@ -51,9 +60,10 @@ import { goHome, navigateBack, getPackingNumberAndBatch, getInventoryStatusName,
import { getDataSource, createRecordInfo, calcHandleQty, getScanCount } from '@/common/detail.js' import { getDataSource, createRecordInfo, calcHandleQty, getScanCount } from '@/common/detail.js'
import winScanButton from '@/mycomponents/scan/winScanButton.vue' import winScanButton from '@/mycomponents/scan/winScanButton.vue'
import winScanPackAndLocation from '@/mycomponents/scan/winScanPackAndLocation.vue' import winScanPack from '@/mycomponents/scan/winScanPack.vue'
import locationCompare from '@/mycomponents/location/locationCompare.vue' import locationCompare from '@/mycomponents/location/locationCompare.vue'
import comDetailCard from '@/mycomponents/detail/comDetailCard.vue' import comLableDetailCard from "@/mycomponents/detail/comLableDetailCard.vue"
import comDetailCardBatch from "@/mycomponents/detail/comDetailCardBatch.vue"
import detailInfoPopup from '@/pages/customerReturn/coms/detailInfoPopup.vue' import detailInfoPopup from '@/pages/customerReturn/coms/detailInfoPopup.vue'
import jobTop from '@/mycomponents/job/jobTop.vue' import jobTop from '@/mycomponents/job/jobTop.vue'
import { useCountStore } from '@/store' import { useCountStore } from '@/store'
@ -75,6 +85,7 @@ const scanPopup = ref()
const detailInfoPopupRef = ref() const detailInfoPopupRef = ref()
const comMessageRef = ref() const comMessageRef = ref()
const comScanLocation = ref() const comScanLocation = ref()
const managementType = ref('')
onLoad((option) => { onLoad((option) => {
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: `${option.title}详情` title: `${option.title}详情`
@ -153,6 +164,18 @@ const getDetail = () => {
toLocationCode.value = subList.value[0].toLocationCode toLocationCode.value = subList.value[0].toLocationCode
} }
toLocationAreaTypeList.value = getDirectoryItemArray(jobContent.value.toAreaTypes) toLocationAreaTypeList.value = getDirectoryItemArray(jobContent.value.toAreaTypes)
//
let itemCodes = []
detailSource.value.forEach(item => {
itemCodes.push(item.itemCode)
item.scaned = false
})
getManagementPrecisions(itemCodes, fromLocationCode.value, res => {
if (res.success) {
managementList.value = res.list;
managementType.value = managementList.value.some(item => item.ManagementPrecision == 'BY_BATCH') ? 'BY_BATCH' : ''
}
})
} else { } else {
showMessage('列表数据为0') showMessage('列表数据为0')
} }
@ -182,26 +205,7 @@ const openDetail = (item) => {
detailInfoPopupRef.value.openPopup(item) detailInfoPopupRef.value.openPopup(item)
} }
const openScanPopup = () => { const openScanPopup = () => {
let fromlocationCode = '' detailInfoPopupRef.value.openPopup()
const fromlocationList = []
for (let i = 0; i < detailSource.value.length; i++) {
const item = detailSource.value[i]
item.subList.forEach((l) => {
//
const location = fromlocationList.find((res) => res == l.fromLocationCode)
if (location == undefined) {
fromlocationList.push(l.fromLocationCode)
}
//
if (fromlocationCode == '') {
if (!l.scaned) {
fromlocationCode = l.fromLocationCode
}
}
})
}
scanPopup.value.openScanPopupForJob(fromlocationCode, fromlocationList, jobContent.value)
} }
const closeScanPopup = () => { const closeScanPopup = () => {
scanPopup.value.closeScanPopup() scanPopup.value.closeScanPopup()
@ -209,12 +213,10 @@ const closeScanPopup = () => {
const getScanResult = (result) => { const getScanResult = (result) => {
try { try {
const { packingNumber } = result.balance const { packingNumber } = result.label
const { batch } = result.balance const { batch } = result.label
const { qty } = result.balance const { qty } = result.label
const { itemCode } = result.balance const { itemCode } = result.label
const { locationCode } = result.balance
const { inventoryStatus } = result.balance
const detail = detailSource.value.find((r) => r.itemCode == itemCode) const detail = detailSource.value.find((r) => r.itemCode == itemCode)
if (detail == undefined) { if (detail == undefined) {
@ -228,40 +230,11 @@ const getScanResult = (result) => {
} else if (itemDetail.scaned) { } else if (itemDetail.scaned) {
showErrorMessage(`箱码[${packingNumber}]` + `批次[${batch}]已经扫描`) showErrorMessage(`箱码[${packingNumber}]` + `批次[${batch}]已经扫描`)
} else { } else {
const balanceStatus = getInventoryStatusName(result.balance.inventoryStatus) itemDetail.scaned = true
const itemStatus = getInventoryStatusName(itemDetail.inventoryStatus) itemDetail.handleQty = Number(result.balance.qty)
itemDetail.packQty = Number(result.package.packQty)
if (itemDetail.inventoryStatus != result.balance.inventoryStatus) { itemDetail.packUnit = result.package.packUnit
if (jobContent.value.allowModifyInventoryStatus == 'TRUE') { calcHandleQty();
showQuestionMessage(`实际库存状态[${balanceStatus}]与推荐库存状态[${itemStatus}]不一致,是否继续退货?`, (res) => {
if (res) {
itemDetail.scaned = true
itemDetail.handleQty = Number(result.balance.qty)
itemDetail.inventoryStatus = result.balance.inventoryStatus
itemDetail.balance = result.balance
itemDetail.balance.balanceQty = Number(result.balance.qty)
itemDetail.balance.packQty = Number(result.package.packQty)
itemDetail.balance.packUnit = result.package.packUnit
calcHandleQty1()
} else {
scanPopupGetFocus()
}
})
} else {
showQuestionMessage(`任务中不允许修改库存状态,实际库存状态[${balanceStatus}]与推荐库存状态[${itemStatus}]不一致,不允许转移!`, (res) => {
scanPopupGetFocus()
})
}
} else {
itemDetail.scaned = true
itemDetail.handleQty = Number(result.balance.qty)
itemDetail.toInventoryStatus = result.balance.inventoryStatus
itemDetail.balance = result.balance
itemDetail.balance.balanceQty = Number(result.balance.qty)
itemDetail.balance.packQty = Number(result.package.packQty)
itemDetail.balance.packUnit = result.package.packUnit
calcHandleQty1()
}
} }
} }
} catch (e) { } catch (e) {
@ -279,24 +252,23 @@ const commit = () => {
if (!checkLocation()) { if (!checkLocation()) {
return return
} }
//
let str = '' // //
detailSource.value.forEach((item) => { if (scanCount.value == subList.value.length) {
item.subList.forEach(cur => { checkCount();
if (cur.qty != cur.handleQty) { } else if (scanCount.value < subList.value.length) {
str += `包装号【${cur.packingNumber}】提交数量【${cur.handleQty}】与任务物料数量【${cur.qty}】不一致` //
} if (jobContent.value.allowPartialComplete == "TRUE") {
}) //
}) checkCount();
if (str) { } else {
str += ',是否确认提交?' //
comMessageRef.value.showQuestionMessage(str, 'red', res => { comMessageRef.value.showErrorMessage("任务明细未全部完成,不允许部分提交!", res => {
if (res) { if (res) {
submitJob() openScanPopup();
} }
}); });
} else { }
submitJob()
} }
// // // //
// if (scanCount.value == subList.value.length) { // if (scanCount.value == subList.value.length) {
@ -316,6 +288,33 @@ const commit = () => {
// } // }
// } // }
} }
const checkCount = () => {
//
let str = ''
detailSource.value.forEach((item) => {
item.subList.forEach(cur => {
if (cur.qty != cur.handleQty) {
let tempHandleQty
if(cur.handleQty){
tempHandleQty = cur.handleQty
}else {
tempHandleQty = 0
}
str += `包装号【${cur.packingNumber}】提交数量【${tempHandleQty}】与任务物料数量【${cur.qty}】不一致`
}
})
})
if (str) {
str = '任务明细未全部完成,是否提交?\n'+str
comMessageRef.value.showQuestionMessage(str, 'red', res => {
if (res) {
submitJob()
}
});
} else {
submitJob()
}
}
const submitJob = () => { const submitJob = () => {
proxy.$modal.loading('提交中...') proxy.$modal.loading('提交中...')
const itemCodes = [] const itemCodes = []
@ -331,7 +330,7 @@ const submitJob = () => {
uni.hideLoading() uni.hideLoading()
console.log(res.data) console.log(res.data)
if (res.data) { if (res.data) {
showCommitSuccessMessage(`提交成功<br>生成客户退货记录:${res.data}`) showCommitSuccessMessage(`提交成功\n生成客户退货记录\n:${res.data}`)
} else { } else {
showErrorMessage(`提交失败[${res.msg}]`) showErrorMessage(`提交失败[${res.msg}]`)
} }
@ -356,9 +355,11 @@ const setParams = () => {
if (detail.scaned) { if (detail.scaned) {
const info = getPackingNumberAndBatch(managementList.value, detail.itemCode, detail.packingNumber, detail.batch) const info = getPackingNumberAndBatch(managementList.value, detail.itemCode, detail.packingNumber, detail.batch)
detail.toPackingNumber = info.packingNumber detail.toPackingNumber = info.packingNumber
detail.packingNumber = info.packingNumber;
detail.fromPackingNumber = info.packingNumber;
detail.toContainerNumber = detail.containerNumber detail.toContainerNumber = detail.containerNumber
detail.toBatch = info.batch detail.toBatch = info.batch
detail.toLocationCode = detail.toLocationCode detail.toLocationCode = info.toLocationCode
detail.toInventoryStatus = 'HOLD' detail.toInventoryStatus = 'HOLD'
subList.push(detail) subList.push(detail)
} }
@ -424,13 +425,13 @@ const showQuestionMessage = (message, callback) => {
const scanPopupGetFocus = () => { const scanPopupGetFocus = () => {
if (scanPopup.value != undefined) { if (scanPopup.value != undefined) {
scanPopup.value.packGetFocus() scanPopup.value.getfocus()
} }
} }
const scanPopupLoseFocus = () => { const scanPopupLoseFocus = () => {
if (scanPopup.value != undefined) { if (scanPopup.value != undefined) {
scanPopup.value.packLoseFocus() scanPopup.value.losefocus()
} }
} }

3
src/pages/customerReturn/job/returnJob.vue

@ -129,7 +129,8 @@ const getList = (type) => {
const params = { const params = {
filters, filters,
pageNo: pageNo.value, pageNo: pageNo.value,
pageSize: pageSize.value pageSize: pageSize.value,
sorts:[{sort:"id",by:"DESC"}]
} }
getCustomerReturnJobList(params) getCustomerReturnJobList(params)

Loading…
Cancel
Save