修改选择单据,单据类型传递问题

20240912_adapter
yewj 2 months ago
parent ff20685b6e
commit 4dcd203c10

@ -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) {

Loading…
Cancel
Save