库存查询增加供应商字段

prod
郑明梁 2 years ago
parent b43337e6f8
commit 46ede19ccf

@ -58,3 +58,13 @@ export function updateInv(data) {
});
}
//获取当前登陆人用户信息
export function selectUser(query) {
return axios({
url: "/admin/auth/admin/selectUser",
method: "get",
params: query
});
}

@ -229,6 +229,7 @@ import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {isBlank} from "@/utils/strUtil";
import invPreProductsDetail from "@/views/inventory/InvPreProductsDetail.vue";
import {getInvSpaceList} from "@/api/inventory/invSpace";
import {selectUser} from "@/api/auth/authAdmin";
export default {
name: "InvPreProducts",
@ -456,10 +457,14 @@ export default {
};
},
created() {
let supId = this.$store.getters.customerId;
if (supId == "110") {
this.showSup = true;
}
selectUser().then((res) => {
let supId = res.data.customerId
if (supId == "110") {
this.showSup = true;
}
}).catch(() => {
this.corpLoading = false;
});
this.findMethod();
this.getInvList();
//this.getList();

@ -245,6 +245,7 @@ import {isBlank} from "@/utils/strUtil";
import invProductsDetail from "@/views/inventory/InvProductsDetail.vue";
import addInvRemindSetDialog from "@/views/inventory/addInvRemindSetDialog.vue";
import {getInvSpaceList} from "@/api/inventory/invSpace";
import {selectUser} from "@/api/auth/authAdmin";
export default {
name: "InvProducts",
@ -481,10 +482,14 @@ export default {
},
created() {
this.filterQuery.invCode = this.$store.getters.locInvCode
let supId = this.$store.getters.customerId;
if (supId == "110") {
this.showSup = true;
}
selectUser().then((res) => {
let supId = res.data.customerId
if (supId == "110") {
this.showSup = true;
}
}).catch(() => {
this.corpLoading = false;
});
this.findMethod();
this.getInvList();
this.getList();

@ -223,6 +223,7 @@ import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {isBlank} from "@/utils/strUtil";
import invPreProductsDetail from "@/views/inventory/InvPreInProductsDetail.vue";
import {getInvSpaceList} from "@/api/inventory/invSpace";
import {selectUser} from "@/api/auth/authAdmin";
export default {
name: "InvPreProducts",
@ -449,10 +450,14 @@ export default {
};
},
created() {
let supId = this.$store.getters.customerId;
if (supId == "110") {
this.showSup = true;
}
selectUser().then((res) => {
let supId = res.data.customerId
if (supId == "110") {
this.showSup = true;
}
}).catch(() => {
this.corpLoading = false;
});
this.findMethod();
this.getInvList();
// this.getList();

Loading…
Cancel
Save