内部码问题修复

dev
郑明梁 2 years ago
parent e6dee7afcf
commit 190d80057e

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

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

Loading…
Cancel
Save