|
|
|
@ -136,6 +136,7 @@ import modifyDialog from "./BussinessTypeThirdModify";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import {filterDetailByKey, getBasicThirdSys} from "@/api/basic/basicThirdSys";
|
|
|
|
|
import {findConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -246,17 +247,17 @@ export default {
|
|
|
|
|
|
|
|
|
|
onAddSubmit() {
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.inputQuery.action.trim())) {
|
|
|
|
|
if (isBlank(this.inputQuery.action)) {
|
|
|
|
|
this.$message.error("单据类型代码不能为空!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.inputQuery.name.trim())) {
|
|
|
|
|
if (isBlank(this.inputQuery.name)) {
|
|
|
|
|
this.$message.error("单据类型名称不能为空!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.inputQuery.thirdSys.trim())) {
|
|
|
|
|
if (isBlank(this.inputQuery.thirdSys)) {
|
|
|
|
|
this.$message.error("第三方系统不能为空");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|