12 changed files with 539 additions and 415 deletions
@ -1,388 +1,391 @@ |
|||
<template> |
|||
<view class="page-wraper"> |
|||
<view class=""> |
|||
<com-blank-view @goScan="showFromLocationPopup" v-if="detailSource.length == 0"></com-blank-view> |
|||
</view> |
|||
|
|||
<view class="page-wraper" v-if="detailSource.length > 0"> |
|||
<view class="page-main"> |
|||
<scroll-view scroll-y="true" class="page-main-scroll"> |
|||
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> |
|||
<view class=""> |
|||
<record-com-detail-card :dataContent="item" :index="index" :settingParam="dataContent" :isShowStatus="false" @removeItem="removeItem(index, item)" @updateData="updateData" @removePack="removePack"> </record-com-detail-card> |
|||
</view> |
|||
<view class="split_line"></view> |
|||
</view> |
|||
</scroll-view> |
|||
</view> |
|||
|
|||
<view class="page-footer"> |
|||
<view class="uni-flex u-col-center space-between padding_10" style="background-color: ghostwhite; width: 100%"> |
|||
<view class=""> |
|||
<requiredLocation title="目标库位" :locationCode="toLocationCode" @getLocation="getToLocationCode" :locationAreaTypeList="tolocationTypeList"></requiredLocation> |
|||
</view> |
|||
<view class="uni-flex uni-row"> |
|||
<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<win-scan-button @goScan="openScanPopup"></win-scan-button> |
|||
</view> |
|||
|
|||
<win-scan-pack-and-location :balanceFromInventoryStatuses="false" ref="scanPopup" @getResult="getScanResult"></win-scan-pack-and-location> |
|||
<win-scan-location ref="scanLocationCode" title="来源库位" @getLocation="getLocation" :locationAreaTypeList="fromLocationAreaTypeList"></win-scan-location> |
|||
<com-message ref="comMessageRef" /> |
|||
</view> |
|||
<view class="page-wraper"> |
|||
<view class=""> |
|||
<com-blank-view @goScan="openScanPopup" v-if="detailSource.length == 0"></com-blank-view> |
|||
</view> |
|||
|
|||
<view class="page-wraper" v-if="detailSource.length > 0"> |
|||
<view class="page-main"> |
|||
<scroll-view scroll-y="true" class="page-main-scroll"> |
|||
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> |
|||
<view class=""> |
|||
<record-com-detail-card :dataContent="item" :index="index" :settingParam="dataContent" |
|||
:isShowStatus="false" @removeItem="removeItem(index,item)" @updateData="updateData" |
|||
@removePack="removePack"> |
|||
</view> |
|||
<view class="split_line"></view> |
|||
</view> |
|||
</scroll-view> |
|||
</view> |
|||
|
|||
<view class="page-footer"> |
|||
<view class="uni-flex u-col-center space-between padding_10" style="background-color: ghostwhite; width: 100%"> |
|||
<view class=""> |
|||
<requiredLocation title="目标库位" :locationCode="toLocationCode" @getLocation="getToLocationCode" |
|||
:locationAreaTypeList="tolocationTypeList"></requiredLocation> |
|||
</view> |
|||
<view class="uni-flex uni-row"> |
|||
<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button> |
|||
</view> |
|||
</view> |
|||
</view> |
|||
<win-scan-button @goScan="openScanPopup"></win-scan-button> |
|||
</view> |
|||
|
|||
<win-scan-package ref="scanPopup" @getResult='getScanResult'></win-scan-package> |
|||
|
|||
<com-message ref="comMessageRef" /> |
|||
</view> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
import { ref, getCurrentInstance, nextTick } from 'vue' |
|||
import { onLoad, onNavigationBarButtonTap, onReady, onReachBottom, onPullDownRefresh } from '@dcloudio/uni-app' |
|||
import { productPutawayRecordSubmit } from '@/api/request2.js' |
|||
import { goHome, getPackingNumberAndBatchByList, deepCopyData, updateTitle } from '@/common/basic.js' |
|||
import { getPrecisionStrategyList } from '@/common/balance.js' |
|||
|
|||
import { getInventoryStatusDesc, getDirectoryItemArray } from '@/common/directory.js' |
|||
|
|||
import { getBusinessType, createItemInfo, createDetailInfo, calcHandleQty } from '@/common/record.js' |
|||
|
|||
import winScanButton from '@/mycomponents/scan/winScanButton.vue' |
|||
import winScanPack from '@/mycomponents/scan/winScanPack.vue' |
|||
import requiredLocation from '@/mycomponents/location/requiredLocation.vue' |
|||
import comProductionRecord from '@/pages/productionReceipt/coms/comProductionRecord.vue' |
|||
import comBlankView from '@/mycomponents/common/comBlankView.vue' |
|||
import winScanLocation from '@/mycomponents/scan/winScanLocation.vue' |
|||
import winScanPackAndLocation from '@/mycomponents/scan/winScanPackAndLocation.vue' |
|||
import recordComDetailCard from '@/mycomponents/record/recordComDetailCard.vue' |
|||
import { useCountStore } from '@/store' |
|||
|
|||
// 获取自定义的store |
|||
const store = useCountStore() |
|||
const { proxy } = getCurrentInstance() |
|||
const id = ref('') |
|||
const scanCount = ref(0) |
|||
const dataContent = ref({}) // 任务内容 |
|||
const subList = ref([]) // 接口返回的任务subList |
|||
const detailSource = ref([]) // 绑定在页面上的数据源 |
|||
const fromLocationCode = ref('') |
|||
const toLocationCode = ref('') |
|||
const fromLocationAreaTypeList = ref([]) |
|||
const tolocationTypeList = ref([]) |
|||
const inInventoryStatus = ref('') // 目标入库库存状态 |
|||
const outInventoryStatus = ref('') // 来源出库库存状态 |
|||
const businessType = ref({}) |
|||
const managementList = ref([]) |
|||
const scanLocationCode = ref() |
|||
const scanPopup = ref() |
|||
const comMessageRef = ref() |
|||
const type = ref('') |
|||
onLoad((option) => { |
|||
uni.setNavigationBarTitle({ |
|||
title: option.title |
|||
}) |
|||
type.value = option.type |
|||
if (type.value == 'predict') { |
|||
updateTitle('制品上架记录') |
|||
} else if (type.value == 'assemble') { |
|||
updateTitle('装配上架记录') |
|||
} |
|||
const typeCode = 'ProductPutaway' |
|||
getBusinessType(typeCode, (res) => { |
|||
if (res.success) { |
|||
businessType.value = res.businessType |
|||
fromLocationAreaTypeList.value = res.fromLocationAreaTypeList |
|||
tolocationTypeList.value = res.tolocationTypeList |
|||
showFromLocationPopup() |
|||
} else { |
|||
showErrorMessage(res.message) |
|||
} |
|||
}) |
|||
}) |
|||
// 返回首页 |
|||
onNavigationBarButtonTap((e) => { |
|||
if (e.index === 0) { |
|||
goHome() |
|||
} |
|||
}) |
|||
|
|||
const getScanResult = (result) => { |
|||
const { balance } = result |
|||
const { label } = result |
|||
const pack = result.package |
|||
const item = detailSource.value.find((res) => { |
|||
if (res.itemCode == balance.itemCode) { |
|||
return res |
|||
} |
|||
}) |
|||
if (item == undefined) { |
|||
const itemp = createItemInfo(balance, pack) |
|||
const newDetail = createDetailInfo(balance, pack) // |
|||
newDetail.fromInventoryStatus = balance.inventoryStatus |
|||
itemp.subList.push(newDetail) |
|||
detailSource.value.push(itemp) |
|||
} else { |
|||
const detail = item.subList.find((r) => { |
|||
if (r.packingNumber == balance.packingNumber && r.batch == balance.batch && r.locationCode == balance.locationCode && r.inventoryStatus == balance.inventoryStatus) { |
|||
return r |
|||
} |
|||
}) |
|||
if (detail == undefined) { |
|||
const newDetail = createDetailInfo(balance, pack) |
|||
newDetail.fromInventoryStatus = balance.inventoryStatus |
|||
item.subList.push(newDetail) |
|||
} else if (detail.scaned == true) { |
|||
showErrorMessage(`箱码[${balance.packingNumber}批次[${balance.batch}]已经在列表中`) |
|||
} |
|||
} |
|||
handleCalcHandleQty() |
|||
} |
|||
|
|||
const handleCalcHandleQty = () => { |
|||
calcHandleQty(detailSource.value) |
|||
} |
|||
|
|||
const removeItem = (index, item) => { |
|||
detailSource.value.splice(index, 1) |
|||
} |
|||
const removePack = () => { |
|||
for (let i = 0; i < detailSource.value.length; i++) { |
|||
const item = detailSource.value[i] |
|||
if (item.subList.length == 0) { |
|||
detailSource.value.splice(i, 1) |
|||
} |
|||
} |
|||
updateData() |
|||
} |
|||
|
|||
const openScanPopup = () => { |
|||
if (fromLocationCode.value == '') { |
|||
showFromLocationPopup() |
|||
return |
|||
} |
|||
scanPopup.value.openScanPopupForType(fromLocationCode.value, businessType.value) |
|||
} |
|||
const showFromLocationPopup = () => { |
|||
nextTick(() => { |
|||
scanLocationCode.value.openScanPopup() |
|||
}) |
|||
} |
|||
|
|||
const closeScanPopup = () => { |
|||
if (scanPopup.value != undefined) { |
|||
scanPopup.value.closeScanPopup() |
|||
} |
|||
} |
|||
|
|||
const scanPopupGetFocus = () => { |
|||
if (scanPopup.value != undefined) { |
|||
scanPopup.value.getfocus() |
|||
} |
|||
} |
|||
|
|||
// const scanLocationCode = (location, code) => { |
|||
// toLocationCode.value = code |
|||
// detailSource.value.forEach((item) => { |
|||
// item.subList.forEach((detail) => { |
|||
// detail.toLocationCode = code |
|||
// }) |
|||
// }) |
|||
// } |
|||
|
|||
const commit = () => { |
|||
if (detailSource.value.length > 0 && detailSource.value[0].subList.length > 0) { |
|||
// 查询管理模式 |
|||
|
|||
proxy.$modal.loading('提交中....') |
|||
managementList.value = [] |
|||
const precisionStrategParams = setPrecisionStrategParams() |
|||
|
|||
getPrecisionStrategyList(precisionStrategParams, (res) => { |
|||
if (res.success) { |
|||
managementList.value = res.list |
|||
const params = setParams() |
|||
productPutawayRecordSubmit(params) |
|||
.then((res) => { |
|||
uni.hideLoading() |
|||
if (res.data) { |
|||
showCommitSuccessMessage(`提交成功<br>生成制品上架记录<br>${res.data}`) |
|||
} else { |
|||
showErrorMessage(`提交失败[${res.msg}]`) |
|||
} |
|||
}) |
|||
.catch((error) => { |
|||
uni.hideLoading() |
|||
showErrorMessage(error) |
|||
}) |
|||
} else { |
|||
uni.hideLoading() |
|||
showErrorMessage(res.message) |
|||
} |
|||
}) |
|||
} else { |
|||
showErrorMessage('没有要提交的数据,请先扫描') |
|||
} |
|||
} |
|||
|
|||
const setPrecisionStrategParams = () => { |
|||
const itemList = [] |
|||
detailSource.value.forEach((item) => { |
|||
item.subList.forEach((detail) => { |
|||
if (detail.scaned) { |
|||
detail.toLocationCode = toLocationCode.value |
|||
const filterResult = itemList.filter((res) => { |
|||
if (res.itemCode == item.itemCode && detail.toLocationCode == res.locationCode) { |
|||
return res |
|||
} |
|||
}) |
|||
// 去掉重复元素 |
|||
if (filterResult.length == 0) { |
|||
const result = { |
|||
itemCode: item.itemCode, |
|||
locationCode: detail.toLocationCode |
|||
} |
|||
itemList.push(result) |
|||
} |
|||
} |
|||
}) |
|||
}) |
|||
return itemList |
|||
} |
|||
|
|||
const setParams = () => { |
|||
const subList = [] |
|||
const creator = store.id |
|||
detailSource.value.forEach((item) => { |
|||
item.subList.forEach((detail) => { |
|||
if (detail.scaned) { |
|||
const submitItem = deepCopyData(detail) |
|||
const info = getPackingNumberAndBatchByList(managementList.value, detail.itemCode, detail.packingNumber, detail.toLocationCode, detail.batch) |
|||
submitItem.itemCode = detail.itemCode |
|||
submitItem.itemName = detail.package.itemName |
|||
submitItem.itemDesc1 = detail.package.itemDesc1 |
|||
submitItem.itemDesc2 = detail.package.itemDesc2 |
|||
|
|||
submitItem.inventoryStatus = detail.inventoryStatus |
|||
|
|||
submitItem.fromPackingNumber = info.packingNumber |
|||
submitItem.toPackingNumber = info.packingNumber |
|||
|
|||
submitItem.fromContainerNumber = detail.containerNumber |
|||
submitItem.toContainerNumber = detail.containerNumber |
|||
|
|||
submitItem.fromBatch = info.batch |
|||
submitItem.toBatch = info.batch |
|||
|
|||
submitItem.fromLocationCode = detail.locationCode |
|||
submitItem.toLocationCode = detail.toLocationCode |
|||
|
|||
submitItem.qty = detail.handleQty |
|||
submitItem.package = '' |
|||
subList.push(submitItem) |
|||
} |
|||
}) |
|||
}) |
|||
dataContent.value.subList = subList |
|||
dataContent.value.type = type.value |
|||
dataContent.value.creator = creator |
|||
return dataContent.value |
|||
} |
|||
|
|||
const showMessage = (message) => { |
|||
comMessageRef.value.showMessage(message, (res) => { |
|||
if (res) { |
|||
} |
|||
}) |
|||
} |
|||
const showErrorMessage = (message) => { |
|||
comMessageRef.value.showErrorMessage(message, (res) => { |
|||
if (res) { |
|||
} |
|||
}) |
|||
} |
|||
const showScanMessage = (message) => { |
|||
comMessageRef.value.showScanMessage(message) |
|||
} |
|||
const afterCloseMessage = () => { |
|||
scanPopupGetFocus() |
|||
} |
|||
const closeScanMessage = () => { |
|||
scanPopupGetFocus() |
|||
} |
|||
const getLocation = (location, code) => { |
|||
getFromLocationCode(location, code) |
|||
} |
|||
const getFromLocationCode = (location, code) => { |
|||
fromLocationCode.value = code |
|||
openScanPopup() |
|||
} |
|||
const getToLocationCode = (location, code) => { |
|||
console.log(code) |
|||
toLocationCode.value = code |
|||
// detailSource.value.forEach((item) => { |
|||
// item.subList.forEach((detail) => { |
|||
// detail.toLocationCode = toLocationCode.value |
|||
// }) |
|||
// }) |
|||
} |
|||
|
|||
const showCommitSuccessMessage = (hint) => { |
|||
comMessageRef.value.showSuccessMessage(hint, (res) => { |
|||
if (res) { |
|||
clearData() |
|||
} |
|||
}) |
|||
} |
|||
|
|||
const clearData = () => { |
|||
fromLocationCode.value = '' |
|||
subList.value = [] |
|||
detailSource.value = [] |
|||
toLocationCode.value = '' |
|||
dataContent.value = {} |
|||
} |
|||
|
|||
const updateData = () => { |
|||
handleCalcHandleQty() |
|||
for (let i = 0; i < detailSource.value.length; i++) { |
|||
const item = detailSource.value[i] |
|||
if (item.qty == 0) { |
|||
detailSource.value.splice(i, 1) |
|||
} |
|||
} |
|||
} |
|||
import { ref, getCurrentInstance, nextTick } from 'vue' |
|||
import { onLoad, onNavigationBarButtonTap, onReady, onReachBottom, onPullDownRefresh } from '@dcloudio/uni-app' |
|||
import { productPutawayRecordSubmit } from '@/api/request2.js' |
|||
import { goHome, getPackingNumberAndBatchByList, deepCopyData, updateTitle } from '@/common/basic.js' |
|||
import { getPrecisionStrategyList } from '@/common/balance.js' |
|||
|
|||
import { getInventoryStatusDesc, getDirectoryItemArray } from '@/common/directory.js' |
|||
|
|||
import { getBusinessType, createItemInfo, createDetailInfo, calcHandleQty } from '@/common/record.js' |
|||
|
|||
import winScanButton from '@/mycomponents/scan/winScanButton.vue' |
|||
import winScanPack from '@/mycomponents/scan/winScanPack.vue' |
|||
import requiredLocation from '@/mycomponents/location/requiredLocation.vue' |
|||
import comProductionRecord from '@/pages/productionReceipt/coms/comProductionRecord.vue' |
|||
import comBlankView from '@/mycomponents/common/comBlankView.vue' |
|||
import winScanLocation from '@/mycomponents/scan/winScanLocation.vue' |
|||
import winScanPackAndLocation from '@/mycomponents/scan/winScanPackAndLocation.vue' |
|||
import recordComDetailCard from '@/mycomponents/record/recordComDetailCard.vue' |
|||
import winScanPackage from '@/mycomponents/scan/winScanPackage.vue' |
|||
|
|||
import { useCountStore } from '@/store' |
|||
|
|||
// 获取自定义的store |
|||
const store = useCountStore() |
|||
const { proxy } = getCurrentInstance() |
|||
const id = ref('') |
|||
const scanCount = ref(0) |
|||
const dataContent = ref({}) // 任务内容 |
|||
const subList = ref([]) // 接口返回的任务subList |
|||
const detailSource = ref([]) // 绑定在页面上的数据源 |
|||
const fromLocationCode = ref('') |
|||
const toLocationCode = ref('') |
|||
const fromLocationAreaTypeList = ref([]) |
|||
const tolocationTypeList = ref([]) |
|||
const inInventoryStatus = ref('') // 目标入库库存状态 |
|||
const outInventoryStatus = ref('') // 来源出库库存状态 |
|||
const bussinessCode = ref('ProductPutaway') |
|||
const businessType = ref({}) |
|||
const managementList = ref([]) |
|||
const scanLocationCode = ref() |
|||
const scanPopup = ref() |
|||
const comMessageRef = ref() |
|||
const type = ref('') |
|||
onLoad((option) => { |
|||
uni.setNavigationBarTitle({ |
|||
title: option.title |
|||
}) |
|||
type.value = option.type |
|||
if (type.value == 'predict') { |
|||
updateTitle('制品上架记录') |
|||
} else if (type.value == 'assemble') { |
|||
updateTitle('装配上架记录') |
|||
} |
|||
getBusinessType(bussinessCode.value, (res) => { |
|||
if (res.success) { |
|||
businessType.value = res.businessType |
|||
fromLocationAreaTypeList.value = res.fromLocationAreaTypeList |
|||
tolocationTypeList.value = res.tolocationTypeList |
|||
openScanPopup() |
|||
} else { |
|||
showErrorMessage(res.message) |
|||
} |
|||
}) |
|||
}) |
|||
// 返回首页 |
|||
onNavigationBarButtonTap((e) => { |
|||
if (e.index === 0) { |
|||
goHome() |
|||
} |
|||
}) |
|||
|
|||
const getScanResult = (result) => { |
|||
const { balance } = result |
|||
const { label } = result |
|||
const pack = result.package |
|||
const item = detailSource.value.find((res) => { |
|||
if (res.itemCode == balance.itemCode) { |
|||
return res |
|||
} |
|||
}) |
|||
if (item == undefined) { |
|||
const itemp = createItemInfo(balance, pack) |
|||
const newDetail = createDetailInfo(balance, pack) // |
|||
newDetail.fromInventoryStatus = balance.inventoryStatus |
|||
itemp.subList.push(newDetail) |
|||
detailSource.value.push(itemp) |
|||
} else { |
|||
const detail = item.subList.find((r) => { |
|||
if (r.packingNumber == balance.packingNumber && r.batch == balance.batch && r.locationCode == balance.locationCode && r.inventoryStatus == balance.inventoryStatus) { |
|||
return r |
|||
} |
|||
}) |
|||
if (detail == undefined) { |
|||
const newDetail = createDetailInfo(balance, pack) |
|||
newDetail.fromInventoryStatus = balance.inventoryStatus |
|||
item.subList.push(newDetail) |
|||
} else if (detail.scaned == true) { |
|||
showErrorMessage(`箱码[${balance.packingNumber}批次[${balance.batch}]已经在列表中`) |
|||
} |
|||
} |
|||
handleCalcHandleQty() |
|||
} |
|||
|
|||
const handleCalcHandleQty = () => { |
|||
calcHandleQty(detailSource.value) |
|||
} |
|||
|
|||
const removeItem = (index, item) => { |
|||
detailSource.value.splice(index, 1) |
|||
} |
|||
const removePack = () => { |
|||
for (let i = 0; i < detailSource.value.length; i++) { |
|||
const item = detailSource.value[i] |
|||
if (item.subList.length == 0) { |
|||
detailSource.value.splice(i, 1) |
|||
} |
|||
} |
|||
updateData() |
|||
} |
|||
|
|||
const openScanPopup = () => { |
|||
setTimeout(r => { |
|||
scanPopup.value.openScanPopupByBusinessType(businessType.value) |
|||
}) |
|||
} |
|||
const showFromLocationPopup = () => { |
|||
nextTick(() => { |
|||
scanLocationCode.value.openScanPopup() |
|||
}) |
|||
} |
|||
|
|||
const closeScanPopup = () => { |
|||
if (scanPopup.value != undefined) { |
|||
scanPopup.value.closeScanPopup() |
|||
} |
|||
} |
|||
|
|||
const scanPopupGetFocus = () => { |
|||
if (scanPopup.value != undefined) { |
|||
scanPopup.value.getfocus() |
|||
} |
|||
} |
|||
|
|||
// const scanLocationCode = (location, code) => { |
|||
// toLocationCode.value = code |
|||
// detailSource.value.forEach((item) => { |
|||
// item.subList.forEach((detail) => { |
|||
// detail.toLocationCode = code |
|||
// }) |
|||
// }) |
|||
// } |
|||
|
|||
const commit = () => { |
|||
if (detailSource.value.length > 0 && detailSource.value[0].subList.length > 0) { |
|||
// 查询管理模式 |
|||
|
|||
proxy.$modal.loading('提交中....') |
|||
managementList.value = [] |
|||
const precisionStrategParams = setPrecisionStrategParams() |
|||
|
|||
getPrecisionStrategyList(precisionStrategParams, (res) => { |
|||
if (res.success) { |
|||
managementList.value = res.list |
|||
const params = setParams() |
|||
productPutawayRecordSubmit(params) |
|||
.then((res) => { |
|||
uni.hideLoading() |
|||
if (res.data) { |
|||
showCommitSuccessMessage(`提交成功<br>生成制品上架记录<br>${res.data}`) |
|||
} else { |
|||
showErrorMessage(`提交失败[${res.msg}]`) |
|||
} |
|||
}) |
|||
.catch((error) => { |
|||
uni.hideLoading() |
|||
showErrorMessage(error) |
|||
}) |
|||
} else { |
|||
uni.hideLoading() |
|||
showErrorMessage(res.message) |
|||
} |
|||
}) |
|||
} else { |
|||
showErrorMessage('没有要提交的数据,请先扫描') |
|||
} |
|||
} |
|||
|
|||
const setPrecisionStrategParams = () => { |
|||
const itemList = [] |
|||
detailSource.value.forEach((item) => { |
|||
item.subList.forEach((detail) => { |
|||
if (detail.scaned) { |
|||
detail.toLocationCode = toLocationCode.value |
|||
const filterResult = itemList.filter((res) => { |
|||
if (res.itemCode == item.itemCode && detail.toLocationCode == res.locationCode) { |
|||
return res |
|||
} |
|||
}) |
|||
// 去掉重复元素 |
|||
if (filterResult.length == 0) { |
|||
const result = { |
|||
itemCode: item.itemCode, |
|||
locationCode: detail.toLocationCode |
|||
} |
|||
itemList.push(result) |
|||
} |
|||
} |
|||
}) |
|||
}) |
|||
return itemList |
|||
} |
|||
|
|||
const setParams = () => { |
|||
const subList = [] |
|||
const creator = store.id |
|||
detailSource.value.forEach((item) => { |
|||
item.subList.forEach((detail) => { |
|||
if (detail.scaned) { |
|||
const submitItem = deepCopyData(detail) |
|||
const info = getPackingNumberAndBatchByList(managementList.value, detail.itemCode, detail.packingNumber, detail.toLocationCode, detail.batch) |
|||
submitItem.itemCode = detail.itemCode |
|||
submitItem.itemName = detail.package.itemName |
|||
submitItem.itemDesc1 = detail.package.itemDesc1 |
|||
submitItem.itemDesc2 = detail.package.itemDesc2 |
|||
|
|||
submitItem.inventoryStatus = detail.inventoryStatus |
|||
|
|||
submitItem.fromPackingNumber = info.packingNumber |
|||
submitItem.toPackingNumber = info.packingNumber |
|||
|
|||
submitItem.fromContainerNumber = detail.containerNumber |
|||
submitItem.toContainerNumber = detail.containerNumber |
|||
|
|||
submitItem.fromBatch = info.batch |
|||
submitItem.toBatch = info.batch |
|||
|
|||
submitItem.fromLocationCode = detail.locationCode |
|||
submitItem.toLocationCode = detail.toLocationCode |
|||
|
|||
submitItem.qty = detail.handleQty |
|||
submitItem.package = '' |
|||
subList.push(submitItem) |
|||
} |
|||
}) |
|||
}) |
|||
dataContent.value.subList = subList |
|||
dataContent.value.type = type.value |
|||
dataContent.value.creator = creator |
|||
return dataContent.value |
|||
} |
|||
|
|||
const showMessage = (message) => { |
|||
comMessageRef.value.showMessage(message, (res) => { |
|||
if (res) { |
|||
} |
|||
}) |
|||
} |
|||
const showErrorMessage = (message) => { |
|||
comMessageRef.value.showErrorMessage(message, (res) => { |
|||
if (res) { |
|||
} |
|||
}) |
|||
} |
|||
const showScanMessage = (message) => { |
|||
comMessageRef.value.showScanMessage(message) |
|||
} |
|||
const afterCloseMessage = () => { |
|||
scanPopupGetFocus() |
|||
} |
|||
const closeScanMessage = () => { |
|||
scanPopupGetFocus() |
|||
} |
|||
const getLocation = (location, code) => { |
|||
getFromLocationCode(location, code) |
|||
} |
|||
const getFromLocationCode = (location, code) => { |
|||
fromLocationCode.value = code |
|||
openScanPopup() |
|||
} |
|||
const getToLocationCode = (location, code) => { |
|||
console.log(code) |
|||
toLocationCode.value = code |
|||
// detailSource.value.forEach((item) => { |
|||
// item.subList.forEach((detail) => { |
|||
// detail.toLocationCode = toLocationCode.value |
|||
// }) |
|||
// }) |
|||
} |
|||
|
|||
const showCommitSuccessMessage = (hint) => { |
|||
comMessageRef.value.showSuccessMessage(hint, (res) => { |
|||
if (res) { |
|||
clearData() |
|||
} |
|||
}) |
|||
} |
|||
|
|||
const clearData = () => { |
|||
fromLocationCode.value = '' |
|||
subList.value = [] |
|||
detailSource.value = [] |
|||
toLocationCode.value = '' |
|||
dataContent.value = {} |
|||
} |
|||
|
|||
const updateData = () => { |
|||
handleCalcHandleQty() |
|||
for (let i = 0; i < detailSource.value.length; i++) { |
|||
const item = detailSource.value[i] |
|||
if (item.qty == 0) { |
|||
detailSource.value.splice(i, 1) |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped lang="scss"> |
|||
page { |
|||
width: 100%; |
|||
height: 100%; |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.page-wraper { |
|||
display: flex; |
|||
flex-direction: column; |
|||
width: 100%; |
|||
height: 100%; |
|||
} |
|||
|
|||
.page-main { |
|||
flex: 1; |
|||
position: relative; |
|||
} |
|||
|
|||
.page-main-scroll { |
|||
position: absolute; |
|||
left: 0; |
|||
right: 0; |
|||
top: 0; |
|||
bottom: 0; |
|||
} |
|||
|
|||
.page-main-list { |
|||
/* height: 80rpx; |
|||
page { |
|||
width: 100%; |
|||
height: 100%; |
|||
background-color: #fff; |
|||
} |
|||
|
|||
.page-wraper { |
|||
display: flex; |
|||
flex-direction: column; |
|||
width: 100%; |
|||
height: 100%; |
|||
} |
|||
|
|||
.page-main { |
|||
flex: 1; |
|||
position: relative; |
|||
} |
|||
|
|||
.page-main-scroll { |
|||
position: absolute; |
|||
left: 0; |
|||
right: 0; |
|||
top: 0; |
|||
bottom: 0; |
|||
} |
|||
|
|||
.page-main-list { |
|||
/* height: 80rpx; |
|||
line-height: 80rpx; */ |
|||
text-align: center; |
|||
background: #e0e0e0; |
|||
} |
|||
</style> |
|||
text-align: center; |
|||
background: #e0e0e0; |
|||
} |
|||
</style> |
Loading…
Reference in new issue