fix:业务按货位上架结合

20240912_adapter
chenhc 5 months ago
parent 3287a4f228
commit 4cc3f3284c

@ -438,6 +438,7 @@ export default {
}, },
data() { data() {
return { return {
queueStatus:null,
busTypeList: [], busTypeList: [],
busQuery: { busQuery: {
busKey: '', busKey: '',
@ -507,6 +508,7 @@ export default {
curSpaceOptions: [], // curSpaceOptions: [], //
curWorkPlaces: [], curWorkPlaces: [],
allWorkPlaces: [],
curAction: { curAction: {
corpType: 0, corpType: 0,
@ -1066,20 +1068,22 @@ export default {
}, },
// //
// findCurWorkPlaces(val) { findAllWorkPlaces() {
// let query = { let query = {
// userId: this.userInfo.userId, page: 1,
// page: 1, limit: 100,
// limit: 100, }
// } getUserBindWork(query).then((res) => {
// getUserBindWork(query).then((res) => { this.allWorkPlaces = res.data.list || [];
// this.curWorkPlaces = res.data.list || [];
// if (this.curWorkPlaces.length == 1 && this.$isNotBlank(this.orderFormData.workPlaceCode)) { {
// this.orderFormData.workPlaceCode = this.curWorkPlaces[0].workplaceId; let item = this.allWorkPlaces.find(item => item.workplaceId == this.orderFormData.workPlaceCode)
// this.defaultSplitType() this.queueStatus = item.queueStatus
// } }
// })
// }, })
},
findCurWorkPlaces(val) { findCurWorkPlaces(val) {
let query = { let query = {
// chargeUser: _this.$store.getters.userId, // chargeUser: _this.$store.getters.userId,
@ -1751,6 +1755,17 @@ export default {
if (this.getDMHotskeyValue(this.scanCode)) { if (this.getDMHotskeyValue(this.scanCode)) {
return return
} }
if (!this.scanCode.includes("DMQ")){
if (this.queueStatus == "0" && this.orderFormData.workPlaceQueueCode){
this.$message.warning('当前工位无需按货位上架')
return;
}else if (this.queueStatus == "1" && !this.orderFormData.workPlaceQueueCode){
this.$message.warning('当前工位需按货位上架')
return;
}
}
this.codeFormData.code = this.scanCode.trim() this.codeFormData.code = this.scanCode.trim()
if (this.codeFormData.code.includes(';')) { if (this.codeFormData.code.includes(';')) {
@ -2018,7 +2033,7 @@ export default {
init() { init() {
// //
this.findAllWorkPlaces()
this.codeFormData.code = '' this.codeFormData.code = ''
if (this.splitType == 'search') { if (this.splitType == 'search') {
} else if (this.splitType == 'out') { } else if (this.splitType == 'out') {

Loading…
Cancel
Save