|
|
|
@ -253,6 +253,7 @@ import codeDetailPanel from "./PanelCreateOrderCodeDetail"
|
|
|
|
|
import bizDetailPanel from "./PanelCreateOrderBizDetail"
|
|
|
|
|
import A from "../../plugins/KeyScaner"
|
|
|
|
|
import {findByInvUser, getLocalJoinByUser} from '@/api/basic/busType'
|
|
|
|
|
import {deleteRe} from "@/api/auth/register";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "ioCreateOrder",
|
|
|
|
@ -501,6 +502,28 @@ export default {
|
|
|
|
|
|
|
|
|
|
//添加条码
|
|
|
|
|
addCode(event) {
|
|
|
|
|
// let regSpe = "{1}";
|
|
|
|
|
// let regExp = new RegExp(regSpe);
|
|
|
|
|
// let code = this.codeFormData.code.trim();
|
|
|
|
|
// code = code.replace("\u001d", "")
|
|
|
|
|
// if (!regExp.test(code)) {
|
|
|
|
|
// this.$confirm("UDI码包含非法字符,是否继续添加?", "提示", {
|
|
|
|
|
// confirmButtonText: "确定",
|
|
|
|
|
// cancelButtonText: "取消",
|
|
|
|
|
// type: "error",
|
|
|
|
|
// })
|
|
|
|
|
// .then(() => {
|
|
|
|
|
// this.addCodeAfterCheck(event);
|
|
|
|
|
// })
|
|
|
|
|
// .catch(() => {
|
|
|
|
|
// });
|
|
|
|
|
//
|
|
|
|
|
// } else {
|
|
|
|
|
// this.addCodeAfterCheck(event);
|
|
|
|
|
// }
|
|
|
|
|
this.addCodeAfterCheck(event);
|
|
|
|
|
},
|
|
|
|
|
addCodeAfterCheck(event) {
|
|
|
|
|
this.originCode = "";
|
|
|
|
|
this.sictomText = "";
|
|
|
|
|
this.orderFormData.corpOrderId = this.orderFormData.corpOrderId.trim();
|
|
|
|
@ -742,9 +765,11 @@ export default {
|
|
|
|
|
// 刷新表单
|
|
|
|
|
this.$refs["dataForm"].resetFields();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
enterKey(event) {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//校验UDI码格式是否正确
|
|
|
|
|
|
|
|
|
|
enterKey() {
|
|
|
|
|
this.checkSuccess = true;
|
|
|
|
|
let tQuery = {
|
|
|
|
|
originCode: this.originCode,
|
|
|
|
@ -796,8 +821,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getInputFocus(event) {
|
|
|
|
@ -930,7 +954,6 @@ export default {
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|