|
|
|
@ -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();
|
|
|
|
|