|
|
|
@ -216,6 +216,7 @@
|
|
|
|
|
<prescribeOriginPanel
|
|
|
|
|
v-if="panelALive"
|
|
|
|
|
:prescribeData="curRow"
|
|
|
|
|
:bizIds="bizIds"
|
|
|
|
|
></prescribeOriginPanel>
|
|
|
|
|
<!-- 在表格下方添加说明 -->
|
|
|
|
|
<!--</el-tab-pane>-->
|
|
|
|
@ -336,7 +337,6 @@ import selectPrescribeDialog from '@/views/collect/selectCollectOrderDialog'
|
|
|
|
|
import PanelOrderManuTagCode from './PanelOrderManuTagCode'
|
|
|
|
|
import prescribeOriginPanel from './PannelOrderBiz'
|
|
|
|
|
import prescribeCodePanel from './PanelOrderTagCode'
|
|
|
|
|
import PannelOrderBiz from './PannelOrderBiz'
|
|
|
|
|
import { listPage } from '@/api/basic/workPlace/sysWorkplaceManage'
|
|
|
|
|
import { enterCodeWeb, batchVailCode, enterCodeBillNo, saveOrderWeb, batchUpdateCode } from '@/api/inout/order'
|
|
|
|
|
import {
|
|
|
|
@ -479,7 +479,8 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
labelName: 1,
|
|
|
|
|
scanStatus: null, // 1:扫码剔除; null 处理单据
|
|
|
|
|
collectSet: {}
|
|
|
|
|
collectSet: {},
|
|
|
|
|
bizIds: [],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -489,7 +490,6 @@ export default {
|
|
|
|
|
selectPrescribeDialog,
|
|
|
|
|
prescribeCodePanel,
|
|
|
|
|
PanelOrderManuTagCode, prescribeOriginPanel,
|
|
|
|
|
PannelOrderBiz,
|
|
|
|
|
PanelOrderAllDetail
|
|
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
@ -678,7 +678,7 @@ export default {
|
|
|
|
|
_this.$nextTick(() => {
|
|
|
|
|
_this.panelALive = true
|
|
|
|
|
})
|
|
|
|
|
_this.getBizDetailList()
|
|
|
|
|
// _this.getBizDetailList()
|
|
|
|
|
_this.vailOrderFinish()
|
|
|
|
|
},
|
|
|
|
|
refreshCodesPanelBank(_this) {
|
|
|
|
@ -1017,6 +1017,7 @@ export default {
|
|
|
|
|
this.formData = res.data
|
|
|
|
|
this.curRow = this.formData
|
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
|
this.bizIds = res.data.bizIds
|
|
|
|
|
this.refreshCodesPanel(this)
|
|
|
|
|
} else {
|
|
|
|
|
if (res.code == 502) {
|
|
|
|
@ -1094,13 +1095,23 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
finishOrder() {
|
|
|
|
|
// 显示加载状态
|
|
|
|
|
|
|
|
|
|
finishOrder(this.formData).then(res => {
|
|
|
|
|
const loading = this.$loading({
|
|
|
|
|
lock: true,
|
|
|
|
|
text: '单据完成中...',
|
|
|
|
|
spinner: 'el-icon-loading',
|
|
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
|
|
});
|
|
|
|
|
this.loading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
const audio = new Audio(require('@/assets/audioFiles/order.mp3'))
|
|
|
|
|
audio.play()
|
|
|
|
|
this.reset()
|
|
|
|
|
loading.close();
|
|
|
|
|
if (this.formDataVisible.scanType != 1) {
|
|
|
|
|
loading.close();
|
|
|
|
|
this.findCurOrder()
|
|
|
|
|
}
|
|
|
|
|
} else if (res.code == 502) {
|
|
|
|
@ -1110,7 +1121,9 @@ export default {
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.formData.confirmFinish = true
|
|
|
|
|
loading.close();
|
|
|
|
|
this.finishOrder()
|
|
|
|
|
this.reset()
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
})
|
|
|
|
|
} else if (res.code == 503) {
|
|
|
|
@ -1120,9 +1133,11 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
loading.close();
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
loading.close();
|
|
|
|
|
this.loading = false
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -1217,6 +1232,7 @@ export default {
|
|
|
|
|
confirmSelect(row) {
|
|
|
|
|
this.formData = row
|
|
|
|
|
this.formData.workPlaceCode = this.workplaceId
|
|
|
|
|
this.bizIds = []
|
|
|
|
|
this.startDeal()
|
|
|
|
|
// this.generateBarcode()
|
|
|
|
|
},
|
|
|
|
@ -1448,6 +1464,7 @@ export default {
|
|
|
|
|
this.clearCode()
|
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
|
this.$refs.inputRef.select()
|
|
|
|
|
this.bizIds = []
|
|
|
|
|
},
|
|
|
|
|
toggleBusType() {
|
|
|
|
|
//隐藏下拉框内容
|
|
|
|
@ -1540,6 +1557,7 @@ export default {
|
|
|
|
|
this.formData.insert = false
|
|
|
|
|
this.curRow = this.formData
|
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
|
this.bizIds = res.data.collectOrder.bizIdList
|
|
|
|
|
this.refreshCodesPanel(this)
|
|
|
|
|
this.printMutiCodeResult(res.data.vailCodeResultResponses)
|
|
|
|
|
} else {
|
|
|
|
@ -1728,8 +1746,9 @@ export default {
|
|
|
|
|
if (this.formData.billNo != null) {
|
|
|
|
|
if (event.key === 'F9' || event.keyCode === 120) {
|
|
|
|
|
event.preventDefault() // 阻止默认行为
|
|
|
|
|
this.finishOrder()
|
|
|
|
|
MessageBox.close()
|
|
|
|
|
this.finishOrder()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (event.key === 'F10' || event.keyCode === 121) {
|
|
|
|
|