|
|
|
@ -662,15 +662,23 @@ export default {
|
|
|
|
|
this.enterBillNoKey()
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.checkSuccess = true;
|
|
|
|
|
this.filterQuery.code = this.scanCode;
|
|
|
|
|
if (!this.parseString(this.filterQuery.code)) {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
this.$message.error("非法产品编码");
|
|
|
|
|
this.filterQuery.code = this.scanCode.trim();
|
|
|
|
|
if (this.filterQuery.code.includes(";")) {
|
|
|
|
|
const codeArray = this.filterQuery.code.split(";");
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: codeArray,
|
|
|
|
|
};
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.filterQuery.code)
|
|
|
|
|
if (!this.parseString(this.filterQuery.code)) {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
this.$message.error("非法产品编码");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let tQuery = {
|
|
|
|
|
viewType: "tagCode",
|
|
|
|
|
workPlaceCode: this.workplaceId,
|
|
|
|
@ -1192,13 +1200,16 @@ export default {
|
|
|
|
|
let params = {
|
|
|
|
|
codeList: event.detail.recCodes,
|
|
|
|
|
};
|
|
|
|
|
console.log(this.formData)
|
|
|
|
|
if (this.formData.billNo == null) {
|
|
|
|
|
this.$message.error("请先选入单据!");
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.batchVailCode(params)
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//校验
|
|
|
|
|
batchVailCode(params) {
|
|
|
|
|
batchVailCode(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.valiCodes = [];
|
|
|
|
@ -1237,10 +1248,9 @@ export default {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//扫码校验
|
|
|
|
|
addGs() {
|
|
|
|
|
const input = this.$refs.inputRef.$refs.input;
|
|
|
|
@ -1253,8 +1263,7 @@ export default {
|
|
|
|
|
input.selectionStart = input.selectionEnd = start + textToInsert.length;
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
parseString(str) {
|
|
|
|
|
// 1. 判断是否以 "MA" 开头
|
|
|
|
|