Merge remote-tracking branch 'origin/dev' into dev

dev
anthonywj 2 years ago
commit a32f69bfb5

@ -408,7 +408,7 @@ export default {
this.query.startTime = null; this.query.startTime = null;
this.query.endTime = null; this.query.endTime = null;
} }
this.query.vueType = "supDelivery"; this.query.vueType = "stock";
filterOrder(this.query) filterOrder(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
@ -469,7 +469,7 @@ export default {
getBusType() { getBusType() {
let query = { let query = {
enabled: true, enabled: true,
vueType: "supDelivery", vueType: "stock",
}; };
getLocalJoinByUser(query) getLocalJoinByUser(query)
.then((response) => { .then((response) => {

@ -146,7 +146,7 @@
" "
> >
<el-select <el-select
v-model="orderFormData.fromCorp" v-model="orderFormData.fromCorpName"
filterable filterable
remote remote
clearable clearable
@ -1171,7 +1171,7 @@ export default {
} else if (response.code == 505) { } else if (response.code == 505) {
this.$confirm(response.message, "提示", { this.$confirm(response.message, "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "忽略", cancelButtonText: "取消",
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {

@ -128,6 +128,7 @@ import {addApplyDetail, addApply} from "../../../api/purchase/purApply";
import store from "../../../store"; import store from "../../../store";
import udiRlDetailDialog from "./../../purchase/purApply/purUdiRlDetailDialog"; import udiRlDetailDialog from "./../../purchase/purApply/purUdiRlDetailDialog";
import {addOrderDetail} from "@/api/inventory/innerOrder"; import {addOrderDetail} from "@/api/inventory/innerOrder";
import {isBlank} from "@/utils/strUtil";
export default { export default {
name: "stockOrderNewSelectProduct", name: "stockOrderNewSelectProduct",
@ -324,7 +325,7 @@ export default {
} }
} }
let str = this.multipleSelection.zczbhhzbapzbh; let str = this.multipleSelection.zczbhhzbapzbh;
if (str.search(",") != -1) { if (!isBlank(str) && str.search(",") != -1) {
this.currentCert = null; this.currentCert = null;
this.certList = str.split(','); this.certList = str.split(',');
this.dialogFormVisible = true; this.dialogFormVisible = true;

Loading…
Cancel
Save