3 changed files with 328 additions and 576 deletions
@ -1,243 +1,271 @@ |
|||||
<template> |
<template> |
||||
<view> |
<view> |
||||
<uni-popup ref="popup" @change="change" @maskClick="closeScanPopup()"> |
<uni-popup ref="popup" @change="change" @maskClick="closeScanPopup()"> |
||||
<view class="popup_box"> |
<view class="popup_box"> |
||||
<view class="pop_title uni-flex space-between"> |
<view class="pop_title uni-flex space-between"> |
||||
<view class="" style="font-size: 35rpx;"> |
<view class="" style="font-size: 35rpx;"> |
||||
校验客户标签 |
校验客户标签 |
||||
</view> |
</view> |
||||
|
|
||||
<view class=""> |
<view class=""> |
||||
<image class="fr icons_scan_close" src="/static/icons/icons_scan_close.svg" |
<image class="fr icons_scan_close" src="/static/icons/icons_scan_close.svg" |
||||
@click="closeScanPopup()"></image> |
@click="closeScanPopup()"></image> |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
|
|
||||
<view class=""> |
<view class=""> |
||||
<view class="" style="position: relative"> |
<view class="" style="position: relative"> |
||||
<win-com-scan ref="comscanFgLabel" placeholder="WMS制品标签" @getResult="getScanFgResult" |
<win-com-scan ref="comscanFgLabel" placeholder="WMS制品标签" @getResult="getScanFgResult" |
||||
:isShowHistory="false" :clearResult="false" :headerType="headerType"></win-com-scan> |
:isShowHistory="false" :clearResult="false" :headerType="headerType"></win-com-scan> |
||||
<view class="uni-flex" |
<view class="uni-flex" |
||||
style="position: absolute; color: #3C9CFF; font-weight: bold; font-size: 15px; left: 10px;bottom:10px; z-index: 999;"> |
style="position: absolute; color: #3C9CFF; font-weight: bold; font-size: 15px; left: 10px;bottom:10px; z-index: 999;"> |
||||
{{itemCode}} |
{{itemCode}} |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
<view class=""> |
<view class=""> |
||||
<win-com-scan-customer-label ref="comscanCustomerLabel" placeholder="客户标签" |
<win-com-scan-customer-label ref="comscanCustomerLabel" placeholder="客户标签" |
||||
@getResult="getScanCustomerResult" :isShowHistory="false" :clearResult="false" |
@getResult="getScanCustomerResult" :isShowHistory="false" :clearResult="false" |
||||
:headerType="headerType"></win-com-scan-customer-label> |
:headerType="headerType"></win-com-scan-customer-label> |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
</uni-popup> |
</uni-popup> |
||||
</view> |
</view> |
||||
<comMessage ref="comMessage"></comMessage> |
<comMessage ref="comMessage"></comMessage> |
||||
</template> |
</template> |
||||
|
|
||||
<script> |
<script> |
||||
import winComScan from '@/mycomponents/scan/winComScan.vue' |
import winComScan from '@/mycomponents/scan/winComScan.vue' |
||||
import winComScanCustomerLabel from '@/mycomponents/scan/winComScanCustomerLabel.vue' |
import winComScanCustomerLabel from '@/mycomponents/scan/winComScanCustomerLabel.vue' |
||||
|
|
||||
import balanceSelect from '@/mycomponents/balance/balanceSelect.vue' |
import balanceSelect from '@/mycomponents/balance/balanceSelect.vue' |
||||
import { |
import { |
||||
getBalanceByManagementPrecision, |
getBalanceByManagementPrecision, |
||||
} from '@/common/balance.js'; |
} from '@/common/balance.js'; |
||||
|
|
||||
import { |
import { |
||||
getBasicLocationByCode, |
getBasicLocationByCode, |
||||
} from '@/api/request2.js'; |
getCustomerItemList |
||||
|
} from '@/api/request2.js'; |
||||
import { |
|
||||
getListLocationAreaTypeDesc, |
import { |
||||
checkDirectoryItemExist, |
getListLocationAreaTypeDesc, |
||||
getDirectoryItemArray, |
checkDirectoryItemExist, |
||||
getLocationAreaTypeName, |
getDirectoryItemArray, |
||||
getInventoryStatusDesc |
getLocationAreaTypeName, |
||||
} from '@/common/directory.js'; |
getInventoryStatusDesc |
||||
export default { |
} from '@/common/directory.js'; |
||||
name: 'winScanPack', |
export default { |
||||
emits: ["getResult", "close", "getCountScanResult"], |
name: 'winScanPack', |
||||
components: { |
emits: ["getResult", "close", "getCountScanResult"], |
||||
winComScan, |
components: { |
||||
winComScanCustomerLabel |
winComScan, |
||||
}, |
winComScanCustomerLabel |
||||
props: { |
}, |
||||
title: { |
props: { |
||||
type: String, |
title: { |
||||
default: '箱标签' |
type: String, |
||||
}, |
default: '箱标签' |
||||
headerType: { |
}, |
||||
type: String, |
headerType: { |
||||
default: "HPQ,HMQ" |
type: String, |
||||
}, |
default: "HPQ,HMQ" |
||||
}, |
}, |
||||
data() { |
}, |
||||
return { |
data() { |
||||
|
return { |
||||
scanResult: {}, |
|
||||
show: false, |
scanResult: {}, |
||||
scanList: [], |
show: false, |
||||
expand: false, |
scanList: [], |
||||
showScanResult: {}, |
expand: false, |
||||
expendIcon: 'arrow-down', |
showScanResult: {}, |
||||
fromLocationCode: '', |
expendIcon: 'arrow-down', |
||||
fromLocation: '', |
fromLocationCode: '', |
||||
fromLocationList: [], |
fromLocation: '', |
||||
fromLocationAreaTypeList: [], |
fromLocationList: [], |
||||
locationOnFocus: false, |
fromLocationAreaTypeList: [], |
||||
businessType: {}, |
locationOnFocus: false, |
||||
inventoryStatus: [], |
businessType: {}, |
||||
managementPrecision: '', |
inventoryStatus: [], |
||||
fromInventoryStatuses: "", |
managementPrecision: '', |
||||
isCheck: false, |
fromInventoryStatuses: "", |
||||
itemCode: '', |
isCheck: false, |
||||
customerItem: null |
itemCode: '', |
||||
} |
customerItem: null, |
||||
}, |
customerCode: '',//客户代码 |
||||
created() { |
packingNumber:''//箱码 |
||||
|
} |
||||
}, |
}, |
||||
methods: { |
created() { |
||||
//直接扫描 |
|
||||
openScanPopupForType(fromLocationCode, businessType) { |
}, |
||||
this.businessType = businessType; |
methods: { |
||||
this.fromLocationCode = fromLocationCode; |
//直接扫描 |
||||
if (fromLocationCode != '') { |
openScanPopupForType(customerCode) { |
||||
this.packGetFocus(); |
|
||||
} else { |
this.customerCode = customerCode; |
||||
this.locationGetFocus(); |
if (this.fromLocationCode != '') { |
||||
} |
this.packGetFocus(); |
||||
this.fromInventoryStatuses = this.businessType.outInventoryStatuses |
} else { |
||||
this.inventoryStatus = getDirectoryItemArray(this.businessType.outInventoryStatuses); //出库库存状态 |
this.locationGetFocus(); |
||||
this.fromLocationAreaTypeList = getDirectoryItemArray(this.businessType.fromLocationAreaTypeList); //出库库区 |
} |
||||
setTimeout(res => { |
this.fromInventoryStatuses = this.businessType.outInventoryStatuses |
||||
this.$refs.popup.open('bottom') |
this.inventoryStatus = getDirectoryItemArray(this.businessType.outInventoryStatuses); //出库库存状态 |
||||
}, 500) |
this.fromLocationAreaTypeList = getDirectoryItemArray(this.businessType.fromLocationAreaTypeList); //出库库区 |
||||
}, |
setTimeout(res => { |
||||
|
this.$refs.popup.open('bottom') |
||||
//在任务中扫描 |
}, 500) |
||||
openScanPopupForJob(fromLocationCode, fromLocationList, jobContent) { |
}, |
||||
this.fromLocationCode = fromLocationCode; |
|
||||
this.fromLocationList = fromLocationList; |
//在任务中扫描 |
||||
if (fromLocationCode != '') { |
openScanPopupForJob(fromLocationCode, fromLocationList, jobContent) { |
||||
this.packGetFocus(); |
this.fromLocationCode = fromLocationCode; |
||||
} else { |
this.fromLocationList = fromLocationList; |
||||
if (this.fromLocationList.length == 0) { |
if (fromLocationCode != '') { |
||||
this.locationGetFocus(); |
this.packGetFocus(); |
||||
} else { |
} else { |
||||
this.fromLocationCode = this.fromLocationList[0]; |
if (this.fromLocationList.length == 0) { |
||||
} |
this.locationGetFocus(); |
||||
} |
} else { |
||||
setTimeout(res => { |
this.fromLocationCode = this.fromLocationList[0]; |
||||
this.$refs.popup.open('bottom') |
} |
||||
}, 500) |
} |
||||
this.fromInventoryStatuses = jobContent.outInventoryStatuses |
setTimeout(res => { |
||||
this.inventoryStatus = getDirectoryItemArray(jobContent.outInventoryStatuses); //出库库存状态; //出库库存状态 |
this.$refs.popup.open('bottom') |
||||
this.fromLocationAreaTypeList = getDirectoryItemArray(jobContent.fromAreaTypes); //出库库存状态 |
}, 500) |
||||
}, |
this.fromInventoryStatuses = jobContent.outInventoryStatuses |
||||
|
this.inventoryStatus = getDirectoryItemArray(jobContent.outInventoryStatuses); //出库库存状态; //出库库存状态 |
||||
closeScanPopup(content) { |
this.fromLocationAreaTypeList = getDirectoryItemArray(jobContent.fromAreaTypes); //出库库存状态 |
||||
this.$refs.popup.close(); |
}, |
||||
this.$emit("close", ''); |
|
||||
}, |
closeScanPopup(content) { |
||||
|
this.$refs.popup.close(); |
||||
|
this.$emit("close", ''); |
||||
|
}, |
||||
|
|
||||
getScanFgResult(result) { |
getScanFgResult(result) { |
||||
this.itemCode = result.label.itemCode; |
console.log('getScanFgResult',result) |
||||
|
this.itemCode = result.label.itemCode; |
||||
var filters = [] |
this.packingNumber = result.package.number; //箱码 |
||||
filters.push({ |
|
||||
column: "customerCode", |
var filters = [] |
||||
action: "==", |
filters.push({ |
||||
value: '20001004' |
column: "customerCode", |
||||
}) |
action: "==", |
||||
filters.push({ |
value: this.customerCode |
||||
column: "itemCode", |
}) |
||||
action: "==", |
filters.push({ |
||||
value: this.itemCode |
column: "itemCode", |
||||
}) |
action: "==", |
||||
|
value: this.itemCode |
||||
var params = { |
}) |
||||
filters: filters, |
|
||||
pageNo: this.pageCurrent, |
var params = { |
||||
pageSize: this.pageSize, |
filters: filters, |
||||
} |
pageNo: 1, |
||||
getCustomerItemList(params).then(res => { |
pageSize: 10, |
||||
if (res.data != null && res.data.list.length > 0) { |
} |
||||
this.customerItem = res.data.list[0]; |
|
||||
} else { |
|
||||
this.showErrorMessage('未查找到客户物料代码'); |
getCustomerItemList(params).then(res => { |
||||
} |
console.log('getCustomerItemList', res) |
||||
}).catch(error => { |
|
||||
this.showErrorMessage(error); |
if (res.data != null && res.data.list.length > 0) { |
||||
}) |
this.customerItem = res.data.list[0]; |
||||
|
} else { |
||||
|
this.showErrorMessage('未查找到客户物料代码'); |
||||
this.customerGetFocus(); |
} |
||||
}, |
}).catch(error => { |
||||
|
this.showErrorMessage(error); |
||||
getScanCustomerResult(result) { |
}) |
||||
if (this.customerItem != null) { |
|
||||
// if(this.customerItem |
|
||||
// ) |
this.customerGetFocus(); |
||||
|
}, |
||||
} |
|
||||
}, |
getScanCustomerResult(result) { |
||||
|
console.log('getScanCustomerResult', result) |
||||
afterCheck() { |
if (this.customerItem != null) { |
||||
|
// 客户物料代码 |
||||
}, |
if (this.customerItem.customerItemCode == result) { |
||||
|
// 通过 |
||||
packGetFocus() { |
this.$emit("checkResult", { |
||||
if (this.$refs.comscanFgLabel != undefined) { |
packingNumber:this.packingNumber ,// 箱码 |
||||
this.$refs.comscanFgLabel.getfocus(); |
customerItemCode:this.customerItem.customerItemCode,//客户物料代码 |
||||
} |
customerItemCode_reality:result, // 实际校验物料 |
||||
}, |
itemCode:this.itemCode,//物料代码 |
||||
|
pass:true |
||||
packLoseFocus() { |
}); |
||||
if (this.$refs.comscanFgLabel != undefined) { |
|
||||
this.$refs.comscanFgLabel.losefocus(); |
}else{ |
||||
} |
// 不通过 |
||||
}, |
this.$emit("checkResult", { |
||||
|
packingNumber:this.packingNumber ,// 箱码 |
||||
customerGetFocus() { |
customerItemCode:this.customerItem.customerItemCode,//客户物料代码 |
||||
if (this.$refs.comscanCustomerLabel != undefined) { |
customerItemCode_reality:result, // 实际校验物料 |
||||
this.$refs.comscanCustomerLabel.getfocus(); |
itemCode:this.itemCode,//物料代码 |
||||
} |
pass:false |
||||
}, |
}); |
||||
|
} |
||||
customerLoseFocus() { |
} |
||||
if (this.$refs.comscanCustomerLabel != undefined) { |
}, |
||||
this.$refs.comscanCustomerLabel.losefocus(); |
|
||||
} |
afterCheck() { |
||||
}, |
|
||||
|
}, |
||||
locationGetFocus() { |
|
||||
this.fromLocationCode = ''; |
packGetFocus() { |
||||
this.locationOnFocus = true; |
if (this.$refs.comscanFgLabel != undefined) { |
||||
}, |
this.$refs.comscanFgLabel.getfocus(); |
||||
|
} |
||||
|
}, |
||||
showMessage(message, callback) { |
|
||||
setTimeout(r => { |
packLoseFocus() { |
||||
this.packLoseFocus(); |
if (this.$refs.comscanFgLabel != undefined) { |
||||
this.$refs.comMessage.showMessage(message, callback); |
this.$refs.comscanFgLabel.losefocus(); |
||||
}) |
} |
||||
}, |
}, |
||||
|
|
||||
showErrorMessage(message, callback) { |
customerGetFocus() { |
||||
setTimeout(r => { |
if (this.$refs.comscanCustomerLabel != undefined) { |
||||
this.packLoseFocus(); |
this.$refs.comscanCustomerLabel.getfocus(); |
||||
this.$refs.comMessage.showErrorMessage(message, callback) |
} |
||||
}) |
}, |
||||
} |
|
||||
} |
customerLoseFocus() { |
||||
} |
if (this.$refs.comscanCustomerLabel != undefined) { |
||||
</script> |
this.$refs.comscanCustomerLabel.losefocus(); |
||||
|
} |
||||
<style lang="scss"> |
}, |
||||
.scroll-view { |
|
||||
overflow-y: scroll; |
locationGetFocus() { |
||||
height: auto; |
this.fromLocationCode = ''; |
||||
max-height: 300rpx; |
this.locationOnFocus = true; |
||||
} |
}, |
||||
|
|
||||
|
|
||||
|
showMessage(message, callback) { |
||||
|
setTimeout(r => { |
||||
|
this.packLoseFocus(); |
||||
|
this.$refs.comMessage.showMessage(message, callback); |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
showErrorMessage(message, callback) { |
||||
|
setTimeout(r => { |
||||
|
this.packLoseFocus(); |
||||
|
this.$refs.comMessage.showErrorMessage(message, callback) |
||||
|
}) |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss"> |
||||
|
.scroll-view { |
||||
|
overflow-y: scroll; |
||||
|
height: auto; |
||||
|
max-height: 300rpx; |
||||
|
} |
||||
</style> |
</style> |
Loading…
Reference in new issue