修改bug

ywj_dev
wangwei 2 years ago
parent 8475b6f49a
commit c34ba433ee

@ -265,6 +265,7 @@ import {getLocalJoinByUser} from "@/api/basic/busType";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import store from "@/store"; import store from "@/store";
import { getInvListByUser } from '@/api/system/invWarehouse'
const formJson = { const formJson = {
@ -406,6 +407,14 @@ export default {
.catch(() => { .catch(() => {
}); });
}, },
getInvList() {
getInvListByUser()
.then((response) => {
this.invList = response.data || [];
})
.catch(() => {
});
},
handleSelectionChange(val) { handleSelectionChange(val) {
this.currentRow = val; this.currentRow = val;
this.getOrderDetails(); this.getOrderDetails();
@ -498,6 +507,13 @@ export default {
}, },
getCodeDetailList() { getCodeDetailList() {
this.codeDetailLoading = true; this.codeDetailLoading = true;
if (this.auditDateRange !== null) {
this.codeQuery.startAduditTime = this.auditDateRange[0];
this.codeQuery.endAduditTime = this.auditDateRange[1];
} else {
this.codeQuery.startAduditTime = null;
this.codeQuery.endAduditTime = null;
}
this.codeQuery.productName= this.codeQuery.cpmctymc; this.codeQuery.productName= this.codeQuery.cpmctymc;
filterDetail(this.codeQuery).then((res) => { filterDetail(this.codeQuery).then((res) => {
this.codeDetailLoading = false; this.codeDetailLoading = false;
@ -553,12 +569,13 @@ export default {
}; };
}, },
created() { created() {
this.codeQuery.invCode=this.$store.getters.locInvCode;
this.getInvList();
this.getList();
let supId = this.$store.getters.customerId; let supId = this.$store.getters.customerId;
if (supId == "110") { if (supId == "110") {
this.showSup = true; this.showSup = true;
} }
this.getList();
}, },
}; };
</script> </script>

@ -293,10 +293,7 @@ export default {
}) })
}, },
getInvList() { getInvList() {
let query = { getInvListByUser()
advanceType: false,
};
getInvListByUser(query)
.then((response) => { .then((response) => {
this.invList = response.data || []; this.invList = response.data || [];
this.getList(); this.getList();

Loading…
Cancel
Save