From 511ecdfdaaa7ad51dbb767c16cac37f7919e451e Mon Sep 17 00:00:00 2001 From: schry <2433098676@qq.com> Date: Wed, 10 May 2023 14:31:01 +0800 Subject: [PATCH 01/22] this.getList(); --- src/views/basic/product/udiInfoManageSp.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/basic/product/udiInfoManageSp.vue b/src/views/basic/product/udiInfoManageSp.vue index b54a9cab..db8fd27e 100644 --- a/src/views/basic/product/udiInfoManageSp.vue +++ b/src/views/basic/product/udiInfoManageSp.vue @@ -281,6 +281,7 @@ export default { }; this.total = 0; this.list = []; + this.getList(); }, search() { this.filterQuery.page = 1; @@ -671,7 +672,7 @@ export default { } , created() { - // this.getList(); + this.getList(); this.selectSysParam(); this.getSysFilter(); this.findMethod(); From 86af5e096d9b53bd144da39b92623d1d65f968fe Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 10 May 2023 14:40:34 +0800 Subject: [PATCH 02/22] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E7=94=B3=E8=B4=AD?= =?UTF-8?q?=E5=8D=95=20=E6=97=A0=E6=B3=95=E6=A0=B9=E6=8D=AE=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8=E6=97=B6=E9=97=B4=E6=9F=A5=E8=AF=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/purchase/purApply/pureApplySearch.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/purchase/purApply/pureApplySearch.vue b/src/views/purchase/purApply/pureApplySearch.vue index d278bf74..4f3d69d2 100644 --- a/src/views/purchase/purApply/pureApplySearch.vue +++ b/src/views/purchase/purApply/pureApplySearch.vue @@ -330,10 +330,10 @@ export default { this.filterQuery.endDate = null; } if (this.actAuditDateRange != null) { - this.filterQuery.starAuditDate = this.actAuditDateRange[0]; + this.filterQuery.startAuditDate = this.actAuditDateRange[0]; this.filterQuery.endAuditDate = this.actAuditDateRange[1]; } else { - this.filterQuery.starAuditDate = null; + this.filterQuery.startAuditDate = null; this.filterQuery.endAuditDate = null; } this.loading = true; From b7b804b71bd4903537e1427808860f83b55898aa Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 10 May 2023 14:50:09 +0800 Subject: [PATCH 03/22] =?UTF-8?q?=E5=AE=A1=E6=A0=B8=E7=94=B3=E8=B4=AD=20?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E9=83=A8=E9=97=A8=20=E4=BB=93=E5=BA=93?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E8=81=94=E5=8A=A8=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/purchase/purApply/pureApplyAudit.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/purchase/purApply/pureApplyAudit.vue b/src/views/purchase/purApply/pureApplyAudit.vue index 2364418b..b19e148f 100644 --- a/src/views/purchase/purApply/pureApplyAudit.vue +++ b/src/views/purchase/purApply/pureApplyAudit.vue @@ -11,7 +11,9 @@ - + Date: Wed, 10 May 2023 15:00:32 +0800 Subject: [PATCH 04/22] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/purchase/purApply/purApply.vue | 13 +++++++++---- src/views/purchase/purApply/pureApplyAudit.vue | 18 +++++++++++++++--- .../purchase/purApply/pureApplySearch.vue | 1 + src/views/purchase/purPlan/purPlan.vue | 4 ++++ 4 files changed, 29 insertions(+), 7 deletions(-) diff --git a/src/views/purchase/purApply/purApply.vue b/src/views/purchase/purApply/purApply.vue index c5b787d7..e5c4ff25 100644 --- a/src/views/purchase/purApply/purApply.vue +++ b/src/views/purchase/purApply/purApply.vue @@ -264,6 +264,7 @@ export default { targetDeptCode: this.invCodebe, targetInvCode:null }; + this.initActDateRange() if(deptCode!=this.invCodebe){ this.getInvList() } @@ -428,6 +429,13 @@ export default { this. getInvList(); }); }, + initActDateRange(){ + + let end = new Date(); + let start = new Date(); + start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); + this.actDateRange = [start, end]; + } } , @@ -450,10 +458,7 @@ export default { } , created() { - let end = new Date(); - let start = new Date(); - start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); - this.actDateRange = [start, end]; + this.initActDateRange() this.getDeptList(); } , diff --git a/src/views/purchase/purApply/pureApplyAudit.vue b/src/views/purchase/purApply/pureApplyAudit.vue index 2364418b..6bf1b49a 100644 --- a/src/views/purchase/purApply/pureApplyAudit.vue +++ b/src/views/purchase/purApply/pureApplyAudit.vue @@ -11,7 +11,7 @@ - + - + { this.invList = res.data || []; }) @@ -385,8 +397,8 @@ export default { this.filterQuery.targetDeptCode=this.deptList[0].code this.invCodebe=this.filterQuery.targetDeptCode } - this.getList(); this. getInvList(); + this.getList(); }); }, } diff --git a/src/views/purchase/purApply/pureApplySearch.vue b/src/views/purchase/purApply/pureApplySearch.vue index d278bf74..128417f6 100644 --- a/src/views/purchase/purApply/pureApplySearch.vue +++ b/src/views/purchase/purApply/pureApplySearch.vue @@ -311,6 +311,7 @@ export default { targetDeptCode: this.invCodebe, }; this.actDateRange = []; + this.actAuditDateRange = []; this.getList(); }, diff --git a/src/views/purchase/purPlan/purPlan.vue b/src/views/purchase/purPlan/purPlan.vue index 63419ab1..42401c74 100644 --- a/src/views/purchase/purPlan/purPlan.vue +++ b/src/views/purchase/purPlan/purPlan.vue @@ -179,6 +179,7 @@ export default { editStatus: 1, emergency:'', deptCode:'', + invCode:null }, invCodebe:null, formName: null, @@ -262,8 +263,10 @@ export default { type: 1, editStatus: 1, deptCode: this.invCodebe, + invCode:null }; this.actDateRange = []; + this.getInvList() this.getList(); }, handleClose() { @@ -406,6 +409,7 @@ export default { var query={ parentId:this.filterQuery.deptCode } + this.filterQuery.invCode = null filterSubAll(query).then((res) => { this.invList = res.data || []; }) From 894280f55a5db52e464ec5e0a5f164916edbec16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Wed, 10 May 2023 15:00:46 +0800 Subject: [PATCH 05/22] =?UTF-8?q?=E5=8D=95=E6=8D=AEbug=E4=BF=AE=E7=A8=BF?= =?UTF-8?q?=E6=90=9C=E7=B4=A2=E5=8D=95=E6=8D=AE=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/IoCreateBusOrder.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/views/inout/IoCreateBusOrder.vue b/src/views/inout/IoCreateBusOrder.vue index efa4089a..c038959f 100644 --- a/src/views/inout/IoCreateBusOrder.vue +++ b/src/views/inout/IoCreateBusOrder.vue @@ -392,7 +392,6 @@ export default { let query = { code: this.filterQuery.invCode, enabled: true, - vueType: "supDelivery", }; getLocalJoinByUser(query) .then((response) => { @@ -425,7 +424,6 @@ export default { //获取订单列表 getList() { this.loading = true; - this.filterQuery.vueType = "supDelivery"; getOrderList(this.filterQuery) .then((response) => { this.loading = false; From d0d686bac997d2808da03430e3e727e54ce66fe9 Mon Sep 17 00:00:00 2001 From: 1178634255 <1178634255@qq.com> Date: Wed, 10 May 2023 15:18:06 +0800 Subject: [PATCH 06/22] =?UTF-8?q?=E5=8D=95=E6=8D=AE=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inout/DialogSelectReceiveOrder.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/inout/DialogSelectReceiveOrder.vue b/src/views/inout/DialogSelectReceiveOrder.vue index 348e5759..ada5cd42 100644 --- a/src/views/inout/DialogSelectReceiveOrder.vue +++ b/src/views/inout/DialogSelectReceiveOrder.vue @@ -90,7 +90,7 @@ - +