|
|
|
@ -351,6 +351,7 @@ import {getWorkBindBusTypes} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
|
|
import {filterWorkOptimize} from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
|
import {getByCode} from "@/api/basic/workPlace/SysWorkplaceQueue";
|
|
|
|
|
import { getCodeList } from '@/api/inout/splitInv'
|
|
|
|
|
import { getSet } from '@/api/collect/collectSet'
|
|
|
|
|
|
|
|
|
|
// 常量定义
|
|
|
|
|
const SCAN_TIMEOUT = 1000
|
|
|
|
@ -633,7 +634,8 @@ export default {
|
|
|
|
|
redMesgOld: false,
|
|
|
|
|
productName: null,
|
|
|
|
|
orderStatus: false,//是否调用子组件
|
|
|
|
|
workPlaceQueueCode:""
|
|
|
|
|
workPlaceQueueCode:"",
|
|
|
|
|
collectSet: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -714,6 +716,7 @@ export default {
|
|
|
|
|
this.scanReCount = 0
|
|
|
|
|
this.$refs.newCreateCodeDetail.codeCount = 0
|
|
|
|
|
this.refreshCodesPanel()
|
|
|
|
|
this.selectSysParam()
|
|
|
|
|
},
|
|
|
|
|
//获取用户仓库列表
|
|
|
|
|
findInvListByUser() {
|
|
|
|
@ -1124,6 +1127,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
if (this.codeFormData.code.includes(';')) {
|
|
|
|
|
const codeArray = this.codeFormData.code.split(';')
|
|
|
|
|
this.verifyScanCount(codeArray)
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: codeArray
|
|
|
|
|
}
|
|
|
|
@ -1778,6 +1782,7 @@ export default {
|
|
|
|
|
this.codeFormData.code = this.scanCode.trim()
|
|
|
|
|
if (this.codeFormData.code.includes(';')) {
|
|
|
|
|
const codeArray = this.codeFormData.code.split(';')
|
|
|
|
|
this.verifyScanCount(codeArray)
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: codeArray
|
|
|
|
|
}
|
|
|
|
@ -1860,6 +1865,18 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
verifyScanCount(codeArray){
|
|
|
|
|
//判断扫码数量是否超出或少于设置扫码数量
|
|
|
|
|
if (this.collectSet.scanMaxCount != null && this.collectSet.scanMaxCount != 0) {
|
|
|
|
|
if (this.collectSet.scanMaxCount > codeArray.length) {
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
return this.$message.error("扫码数量少于设置扫码数量");
|
|
|
|
|
} else if (this.collectSet.scanMaxCount < codeArray.length) {
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
return this.$message.error("扫码数量超出");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
removeCodesTemp(query) {
|
|
|
|
|
//todo 已经传过来 扫码明细 的数据 this.codeArray 根据id删除码明细的方法 deleteCodesTempById
|
|
|
|
|
deleteCodesTempByCodes(query).then(res => {
|
|
|
|
@ -2071,6 +2088,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
init() {
|
|
|
|
|
//页面初始化
|
|
|
|
|
this.selectSysParam()
|
|
|
|
|
this.findAllWorkPlaces()
|
|
|
|
|
this.codeFormData.code = ''
|
|
|
|
|
if (this.splitType == 'search') {
|
|
|
|
@ -2117,9 +2135,17 @@ export default {
|
|
|
|
|
this.showSearch = true
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
selectSysParam() {
|
|
|
|
|
getSet().then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.collectSet = response.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
//处理事件
|
|
|
|
|
handleRecCodesEvent(event) {
|
|
|
|
|
console.log('接收 recCodes event:', event.detail.recCodes)
|
|
|
|
|
this.verifyScanCount(event.detail.recCodes)
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: event.detail.recCodes
|
|
|
|
|
}
|
|
|
|
@ -2403,6 +2429,7 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
// this.splitType = this.$route.query.splitType;
|
|
|
|
|
// if (this.splitType == null)
|
|
|
|
|
|
|
|
|
|
this.splitType = this.fromSplitType
|
|
|
|
|
this.init()
|
|
|
|
|
if (this.$route.query.workplaceId != null) {
|
|
|
|
|