From c34ba433ee0f481fdba0ee7ff79af4d8ca75ac24 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Sat, 25 Mar 2023 17:31:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvSupPreInSerach.vue | 21 +++++++++++++++++++-- src/views/inventory/InvSupProuducts.vue | 5 +---- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/views/inventory/InvSupPreInSerach.vue b/src/views/inventory/InvSupPreInSerach.vue index 076fa52..e1577f3 100644 --- a/src/views/inventory/InvSupPreInSerach.vue +++ b/src/views/inventory/InvSupPreInSerach.vue @@ -265,6 +265,7 @@ import {getLocalJoinByUser} from "@/api/basic/busType"; import {isBlank} from "@/utils/strUtil"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import store from "@/store"; +import { getInvListByUser } from '@/api/system/invWarehouse' const formJson = { @@ -406,6 +407,14 @@ export default { .catch(() => { }); }, + getInvList() { + getInvListByUser() + .then((response) => { + this.invList = response.data || []; + }) + .catch(() => { + }); + }, handleSelectionChange(val) { this.currentRow = val; this.getOrderDetails(); @@ -498,6 +507,13 @@ export default { }, getCodeDetailList() { 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; filterDetail(this.codeQuery).then((res) => { this.codeDetailLoading = false; @@ -553,12 +569,13 @@ export default { }; }, created() { - + this.codeQuery.invCode=this.$store.getters.locInvCode; + this.getInvList(); + this.getList(); let supId = this.$store.getters.customerId; if (supId == "110") { this.showSup = true; } - this.getList(); }, }; diff --git a/src/views/inventory/InvSupProuducts.vue b/src/views/inventory/InvSupProuducts.vue index 33376e4..7f3583d 100644 --- a/src/views/inventory/InvSupProuducts.vue +++ b/src/views/inventory/InvSupProuducts.vue @@ -293,10 +293,7 @@ export default { }) }, getInvList() { - let query = { - advanceType: false, - }; - getInvListByUser(query) + getInvListByUser() .then((response) => { this.invList = response.data || []; this.getList();