库存查询增加供应商字段

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

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

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

Loading…
Cancel
Save