2/20 高拍仪设置 手动解码

20240912_adapter
wangwei 1 month ago
parent a0db9896c6
commit 477fd2a179

@ -210,6 +210,7 @@
type='number'
splaceholder="请输入内容"
v-model="formData.fixedCount"
@input="handleInput"
></el-input>
</el-form-item>
</el-col>
@ -384,6 +385,9 @@ export default {
ShelfDisplay
},
methods: {
handleInput() {
this.formData.fixedCount = Math.max(0, this.formData.fixedCount);
},
handleSlotClick(slot) {
//
console.log('被点击的货位:', slot);

@ -20,7 +20,7 @@
style="display: flex; margin-top: 5px; float: right"
>
<el-button size="mini" type="primary" @click.native="paizhao()" :loading="submitLoading"
v-if="splitType=='out' && !redMesg" style="margin-right: 8px;border-radius: 5%;"
v-if="splitType=='out' && !redMesg" style="margin-right: 8px;border-radius: 5%;" :disabled=" collectSet.autoDecode == 1"
v-show="isLinkDisabled"
>拍照解码
</el-button>

@ -21,10 +21,14 @@
<el-button-group
style="display: flex; margin-top: 5px; float: right"
>
<el-button size="mini" type="primary" @click.native="fallbackCode()"
<el-button size="mini" type="primary" @click.native="paizhao()"
v-if="!redMeg" style="margin-right: 8px;border-radius: 5%;" :disabled=" collectSet.autoDecode == 1"
>拍照解码
</el-button>
<el-button size="mini" type="primary" @click.native="fallbackCode()" :disabled="redMeg" style="margin-right: 8px;border-radius: 5%;"
>回退
</el-button>
<el-button size="mini" type="primary"
<el-button size="mini" type="primary" :disabled="redMeg" style="margin-right: 8px;border-radius: 5%;"
>放弃
</el-button>
@ -230,6 +234,7 @@ import { deleteCode, deleteCodes, fallbackCode, getCodeListByRelId } from '@/api
import { splitFifoDetail } from '@/api/inout/splitCode'
import { batchAddCode, batchVailCode, enterCodeWeb } from '@/api/inout/order'
import { getSet } from '@/api/collect/collectSet'
import A from '@/plugins/KeyScaner'
const SLOT_CODE_PREFIX = 'DMQ'
@ -297,7 +302,10 @@ export default {
isSuccess: false,
//
collectSet: {},
valiCodes: []
valiCodes: [],
//weksolket
sitcomScan: false,
sictomText: '',
}
},
methods: {
@ -410,6 +418,7 @@ export default {
if (res.code == 20000) {
//
//
this.sictomText = ''
this.printCodeResult(res.data)
this.getCodes()
this.getSplitCodes()
@ -603,8 +612,8 @@ export default {
fallbackCode() {
// fallbackCode()
// this.firstGroupNumber
if (this.queueCodes.length == 0){
return this.$message.error("当前上货队列不足")
if (this.queueCodes.length == 0) {
return this.$message.error('当前上货队列不足')
}
this.$confirm('是否确定回退上药队列?', '提示', {
confirmButtonText: '确定',
@ -633,6 +642,16 @@ export default {
})
})
},
paizhao(){
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
// const data = JSON.stringify({ action: "subscribe", channel: "updates" }); //
var sendData = "ManualClick=1"
this.ws.send(sendData); //
console.log("Data sent:", sendData);
} else {
console.error("WebSocket is not connected.");
}
},
init() {
this.scanCode = ''
this.$refs.inputRef.focus()
@ -659,7 +678,119 @@ export default {
this.collectSet = response.data
}
})
},
//
getDMHotskeyValue(str) {
console.log(str)
if (str.includes("DMQ")) {
if (!isBlank(this.curQueueName)) {
this.scanCode = ''
return this.$message.warning("当前已录入槽位")
}
let query = {
code: this.scanCode
}
if (str != null) {
query.code = str
query.workPlaceIdFk = this.workplaceId
}
this.handleSlotCodeScan()
return true
}else if (str.includes("DMOENTER")) {
return true
}else if (str.includes("DMOCANCEL")) {
return true
}else if (str.includes("DMODEL")) {
return true
}
return false
},
handleScanComplete(fullScanData) {
if (!this.curQueue.code) {
if (fullScanData != null && fullScanData[0].includes("DMQ")) {
this.getDMHotskeyValue(fullScanData[0])
return;
}
} else if (this.curQueue.code != null) {
if (fullScanData != null && fullScanData[0].includes("DMQ")) {
this.$message.warning('已绑定取货槽,请勿重复绑定!');
return;
}
}
const verify = this.verifyScanCount(fullScanData)
if (verify){
let params = {
codeList: fullScanData
}
this.batchVailCode(params)
}
},
handleRecCodesEvent(event) {
console.log('接收 recCodes event:', event.detail.recCodes)
const verify = this.verifyScanCount(event.detail.recCodes)
if (verify) {
let params = {
codeList: event.detail.recCodes
}
this.batchVailCode(params)
}
},
socketListener() {
let lastScanTime = Date.now()
let scanBuffer = []
let scanTimeout = null
const SCAN_TIMEOUT = 1000 // 1
const self = this
console.log('启用监听')
this.ws.onmessage = function (event) {
let scanData = event.data //
let currentTime = Date.now()
console.log(scanData + "33333")
//
if (currentTime - lastScanTime > SCAN_TIMEOUT) {
//
if (scanBuffer.length > 0) {
self.handleScanComplete(scanBuffer)
}
//
scanBuffer = []
}
//
lastScanTime = currentTime
//
scanBuffer.push(scanData)
//
if (scanTimeout) {
clearTimeout(scanTimeout)
}
//
scanTimeout = setTimeout(() => {
//
self.handleScanComplete(scanBuffer)
scanBuffer = []
}, SCAN_TIMEOUT)
}
},
handleVisibilityChange() {
if (document.visibilityState === 'visible') {
console.log('用户切回到了工位页面')
if (this.ws == null || this.ws.readyState === WebSocket.CLOSED) {
this.ws = new WebSocket('ws://127.0.0.1:9988')
const self = this
this.ws.onopen = function (evt) {
console.log('工位剔除WebSocket 连接中 ...')
self.socketListener()
}
}
} else {
if (this.ws && this.ws.readyState === WebSocket.OPEN) {
this.ws.close()
console.log('关闭工位剔除websocket成功')
}
}
},
},
computed: {
//
@ -690,12 +821,54 @@ export default {
}
},
mounted() {
// this.$refs.inputRef.focus()
// this.$refs.inputRef.select()
document.body.ondrop = function(event) {
event.preventDefault()
event.stopPropagation()
}
var that = this
var inputer = document.getElementById('inputer')
window.sc = new A.KeyScaner(inputer) //DOM
sc.onInput = function(text) {
if (text.includes('delete')) {
that.scanCode = ''
that.sictomText = ''
that.originCode = ''
return
}
if (that.sitcomScan) {
let tempTxt = text
let str = tempTxt.replace(/[\r]/g, '')
that.sictomText = that.sictomText + str
that.scanCode = that.sictomText
} else {
that.scanCode = text
}
}
inputer.focus()
this.$refs.inputRef.focus()
this.$refs.inputRef.select()
//
if (window.navigator.userAgent.indexOf('GLXP_PC') != -1) {
this.scanDisabled = true
window.removeEventListener('gwsh', this.handleRecCodesEvent)
window.addEventListener('gwsh', this.handleRecCodesEvent)
}
document.addEventListener('visibilitychange', this.handleVisibilityChange)
this.handleVisibilityChange()
},
created() {
this.workplaceId = this.$route.query.workplaceId
this.selectSysParam()
},
beforeDestroy() {
window.removeEventListener('gwsh', this.handleRecCodesEvent)
this.ws.close()
this.ws.onclose = function(evt) {
console.log('工位剔除Connection closed.')
}
document.removeEventListener('visibilitychange', this.handleVisibilityChange)
}
}
</script>

Loading…
Cancel
Save