|
|
|
@ -204,7 +204,7 @@
|
|
|
|
|
<selectPrescribeDialog
|
|
|
|
|
ref="childRef"
|
|
|
|
|
:workPlaceCode="null"
|
|
|
|
|
:busType="this.orderData.busType"
|
|
|
|
|
:busType="this.$route.query.busType"
|
|
|
|
|
:fromCorp="this.orderData.fromCorp"
|
|
|
|
|
:confirmSelect="this.confirmSelect"
|
|
|
|
|
:closeDialog="this.closeDialog"
|
|
|
|
@ -229,7 +229,7 @@ import {
|
|
|
|
|
} from '@/api/collect/collectOrder'
|
|
|
|
|
import {checkCollectOrderManCode, draftOrder, finishCheckOrder, updateOrder} from '@/api/collect/splitCreateOrder'
|
|
|
|
|
import selectPrescribeDialog from "@/views/collect/selectCollectOrderDialog";
|
|
|
|
|
import { getSet } from '@/api/collect/collectSet'
|
|
|
|
|
import {getSet} from '@/api/collect/collectSet'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'IocCollectOrderCheckCode',
|
|
|
|
@ -337,7 +337,7 @@ export default {
|
|
|
|
|
if (this.filterQuery.udiCode.includes(';')) {
|
|
|
|
|
const codeArray = this.filterQuery.udiCode.split(';')
|
|
|
|
|
const verify = this.verifyScanCount(codeArray)
|
|
|
|
|
if (verify){
|
|
|
|
|
if (verify) {
|
|
|
|
|
this.filterQuery.udiCodeList = codeArray
|
|
|
|
|
this.filterQuery.udiCode = ''
|
|
|
|
|
this.filterQuery.orderIdFk = this.orderData.billNo
|
|
|
|
@ -875,7 +875,9 @@ export default {
|
|
|
|
|
this.scanTitle = '扫码结果:'
|
|
|
|
|
this.scanResultType = 'success'
|
|
|
|
|
this.curRow = null
|
|
|
|
|
this.orderData = {}
|
|
|
|
|
this.orderData = {
|
|
|
|
|
busType: this.$route.query.busType
|
|
|
|
|
}
|
|
|
|
|
this.codeCount = 0
|
|
|
|
|
this.workplaceId = Number(this.$route.query.workplaceId)
|
|
|
|
|
this.codeList = []
|
|
|
|
@ -889,7 +891,7 @@ export default {
|
|
|
|
|
this.getInputFocus()
|
|
|
|
|
this.selectSysParam()
|
|
|
|
|
},
|
|
|
|
|
verifyScanCount(codeArray){
|
|
|
|
|
verifyScanCount(codeArray) {
|
|
|
|
|
//判断扫码数量是否超出或少于设置扫码数量
|
|
|
|
|
if (this.collectSet.scanMaxCount != null && this.collectSet.scanMaxCount != 0) {
|
|
|
|
|
if (this.collectSet.scanMaxCount > codeArray.length) {
|
|
|
|
|