From a99e5923ac6e52e71195474bfefc9ccf65112b17 Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 8 May 2023 17:22:50 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E9=AA=8C=E6=94=B6=20=E5=AF=84?= =?UTF-8?q?=E5=94=AE=E5=BA=93=E5=AD=98=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvPreProducts.vue | 7 ++++++- src/views/inventory/InvSupPreInProducts.vue | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/views/inventory/InvPreProducts.vue b/src/views/inventory/InvPreProducts.vue index 6aabe779..c08b4c8c 100644 --- a/src/views/inventory/InvPreProducts.vue +++ b/src/views/inventory/InvPreProducts.vue @@ -339,6 +339,11 @@ export default { findAllInvByUser(query) .then((response) => { this.invList = response.data || []; + for(var i=0;i< this.invList.length;i++){ + if(this.invList[i].advanceType == 3){ + this.filterQuery.invCode=this.invList[i].code; + } + } this.getList(); this.getSpaceList(); }) @@ -452,7 +457,7 @@ export default { } this.findMethod(); this.getInvList(); - this.getList(); + //this.getList(); }, }; diff --git a/src/views/inventory/InvSupPreInProducts.vue b/src/views/inventory/InvSupPreInProducts.vue index 2f01bfcb..c8daa2f0 100644 --- a/src/views/inventory/InvSupPreInProducts.vue +++ b/src/views/inventory/InvSupPreInProducts.vue @@ -331,6 +331,11 @@ export default { findAllInvByUser(query) .then((response) => { this.invList = response.data || []; + for(var i=0;i< this.invList.length;i++){ + if(this.invList[i].advanceType == 2){ + this.filterQuery.invCode=this.invList[i].code; + } + } this.getList(); this.getSpaceList(); }) @@ -444,7 +449,7 @@ export default { } this.findMethod(); this.getInvList(); - this.getList(); + // this.getList(); }, };