|
|
|
@ -434,6 +434,7 @@ import {orderbatchAddCode} from "@/api/inout/splitCode";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
|
|
|
|
|
import JsBarcode from 'jsbarcode';
|
|
|
|
|
import { getSet } from '@/api/collect/collectSet'
|
|
|
|
|
export default {
|
|
|
|
|
/**
|
|
|
|
|
* 处理处方
|
|
|
|
@ -545,6 +546,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
labelName: 1,
|
|
|
|
|
scanStatus: null, // 1:扫码剔除; null 处理单据
|
|
|
|
|
collectSet: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -856,10 +858,13 @@ export default {
|
|
|
|
|
this.filterQuery.code = this.scanCode.trim();
|
|
|
|
|
if (this.filterQuery.code.includes(";")) {
|
|
|
|
|
const codeArray = this.filterQuery.code.split(";");
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: codeArray,
|
|
|
|
|
};
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
const verify = this.verifyScanCount(codeArray)
|
|
|
|
|
if (verify){
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: codeArray,
|
|
|
|
|
};
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.filterQuery.code)
|
|
|
|
@ -1242,12 +1247,14 @@ export default {
|
|
|
|
|
type: 'warning'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.formData = temp;
|
|
|
|
|
this.generateBarcode()
|
|
|
|
|
this.startDeal();
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
});
|
|
|
|
|
} else if (temp.tagStatus === 2 || temp.tagStatus === 1) {
|
|
|
|
|
|
|
|
|
|
this.formData = temp;
|
|
|
|
|
this.generateBarcode()
|
|
|
|
|
this.panelALive = true
|
|
|
|
|
this.startDeal();
|
|
|
|
|
// this.$confirm('检测到当前工位存在正在处理单据,是否继续上一次单据处理?', '提示', {
|
|
|
|
@ -1289,6 +1296,7 @@ export default {
|
|
|
|
|
// this.selectTabsname(this.formData.busType);
|
|
|
|
|
this.formData.tagStatus = 2;
|
|
|
|
|
this.updateOrder();
|
|
|
|
|
this.selectSysParam()
|
|
|
|
|
// this.refreshCodesPanel(this);
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
},
|
|
|
|
@ -1445,6 +1453,21 @@ export default {
|
|
|
|
|
handleCommand(command) {
|
|
|
|
|
// this.$message('click on item ' + command);
|
|
|
|
|
},
|
|
|
|
|
verifyScanCount(codeArray){
|
|
|
|
|
//判断扫码数量是否超出或少于设置扫码数量
|
|
|
|
|
if (this.collectSet.scanMaxCount != null && this.collectSet.scanMaxCount != 0) {
|
|
|
|
|
if (this.collectSet.scanMaxCount > codeArray.length) {
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.$message.error("扫码数量少于设置扫码数量");
|
|
|
|
|
return false;
|
|
|
|
|
} else if (this.collectSet.scanMaxCount < codeArray.length) {
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.$message.error("扫码数量超出");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
clearCode() {
|
|
|
|
|
// this.originCode = "";
|
|
|
|
|
// this.formData.code = "";
|
|
|
|
@ -1485,6 +1508,7 @@ export default {
|
|
|
|
|
shipper: null,
|
|
|
|
|
fromCorp: null,
|
|
|
|
|
};
|
|
|
|
|
this.selectSysParam()
|
|
|
|
|
this.curRow = null
|
|
|
|
|
this.formData.confirmFinish = false;
|
|
|
|
|
this.refreshCodesPanelBank(this)
|
|
|
|
@ -1526,6 +1550,7 @@ export default {
|
|
|
|
|
//处理事件
|
|
|
|
|
handleRecCodesEvent(event) {
|
|
|
|
|
console.log('接收 recCodes event:', event.detail.recCodes);
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: event.detail.recCodes,
|
|
|
|
|
};
|
|
|
|
@ -1533,7 +1558,12 @@ export default {
|
|
|
|
|
this.$message.error("请先选入单据!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
|
|
|
|
|
const verify = this.verifyScanCount(event.detail.recCodes)
|
|
|
|
|
if (verify){
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -1588,6 +1618,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
// this.scanCode = this.valiCodes.join(";");
|
|
|
|
|
}
|
|
|
|
|
this.selectSysParam()
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
@ -1635,6 +1666,7 @@ export default {
|
|
|
|
|
this.enterBillNoKey(fullScanData[0])
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: fullScanData,
|
|
|
|
|
};
|
|
|
|
@ -1642,7 +1674,10 @@ export default {
|
|
|
|
|
this.$message.error("请先选入单据!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
const verify = this.verifyScanCount(fullScanData)
|
|
|
|
|
if (verify){
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
}
|
|
|
|
|
// 在这里处理完整的扫码数据,如提交到后台或显示
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -1751,6 +1786,13 @@ export default {
|
|
|
|
|
this.scanTip = "扫码录入:"
|
|
|
|
|
this.placeholder = '请点击输入框进行选扫码'
|
|
|
|
|
},
|
|
|
|
|
selectSysParam() {
|
|
|
|
|
getSet().then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.collectSet = response.data
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
@ -1800,6 +1842,7 @@ export default {
|
|
|
|
|
this.fromList = re.data.fromList;
|
|
|
|
|
});
|
|
|
|
|
this.findCurWorkPlaces();
|
|
|
|
|
this.selectSysParam();
|
|
|
|
|
|
|
|
|
|
this.formData.invCode = this.$store.getters.locInvCode;
|
|
|
|
|
if (this.$route.query.billNo != null) {
|
|
|
|
|