|
@@ -320,18 +320,21 @@ import {
|
|
|
} from "@/assets/js/statusList";
|
|
|
import WaitApproval from "./waitApproval.vue";
|
|
|
import resToken from "../../../../mixins/resToken";
|
|
|
+import { isnumber } from "../../../../utils/validate";
|
|
|
|
|
|
-const reg = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]*$/;
|
|
|
+// const reg = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]*$/;
|
|
|
|
|
|
const VALID_OA_CODE = function(_1, _2, callback) {
|
|
|
const { oaCode } = this.ruleForm;
|
|
|
if (!oaCode) {
|
|
|
callback(new Error("OA编号不能为空!"));
|
|
|
} else {
|
|
|
- if (reg.test(oaCode)) {
|
|
|
- callback();
|
|
|
+ if (!isnumber(oaCode)) {
|
|
|
+ callback(new Error("OA编号必须为纯数字!"));
|
|
|
+ } else if (oaCode.length !== 12) {
|
|
|
+ callback(new Error("OA编号必须为12位!"));
|
|
|
} else {
|
|
|
- callback(new Error("OA编号必须包含数字和字母!"));
|
|
|
+ callback();
|
|
|
}
|
|
|
}
|
|
|
};
|
|
@@ -345,7 +348,6 @@ const VALID_SUPPLIER = function(_1, _2, callback) {
|
|
|
) {
|
|
|
callback(new Error("请选择客户公司!"));
|
|
|
} else {
|
|
|
- console.log(supplierNo[0], this.sitem.customer_code);
|
|
|
if (supplierNo[0] === this.sitem.customer_code) {
|
|
|
callback(new Error("修改的客户公司不能与销售单原客户公司一致!"));
|
|
|
} else {
|
|
@@ -516,7 +518,6 @@ export default {
|
|
|
try {
|
|
|
await this.$refs.ruleForm.validate();
|
|
|
const { supplierName, ...rest } = this.ruleForm;
|
|
|
-
|
|
|
const apply_name = this.activeOptions.find(
|
|
|
({ id }) => id === rest.uid[0]
|
|
|
).nickname;
|
|
@@ -536,6 +537,8 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+ console.log(111);
|
|
|
+
|
|
|
this.loading = true;
|
|
|
const res = await asyncRequest.create(payload);
|
|
|
this.loading = false;
|
|
@@ -575,14 +578,6 @@ export default {
|
|
|
this.sitem = res.data;
|
|
|
this.ruleForm.cgdNo = this.sitem.orderCode;
|
|
|
|
|
|
- this.ruleForm.supplierName = this.sitem.customerName
|
|
|
- ? [this.sitem.customerName]
|
|
|
- : [];
|
|
|
-
|
|
|
- this.ruleForm.supplierNo = this.sitem.customer_code
|
|
|
- ? [this.sitem.customer_code]
|
|
|
- : [];
|
|
|
-
|
|
|
if (this.mode !== "update") {
|
|
|
this.$refs.ruleForm && this.$refs.ruleForm.validateField("cgdNo");
|
|
|
}
|