From 0bec051c9f0ab65c9556b53548e9fdc8a5d0df7f Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Thu, 30 May 2024 11:21:50 +0800 Subject: [PATCH 1/4] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=E6=89=93?= =?UTF-8?q?=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/supInoutSearchOrder.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/inventory/supInoutSearchOrder.vue b/src/views/inventory/supInoutSearchOrder.vue index 92c3f7e9..4761da81 100644 --- a/src/views/inventory/supInoutSearchOrder.vue +++ b/src/views/inventory/supInoutSearchOrder.vue @@ -678,8 +678,8 @@ export default { actionType: this.filterQuery.actionType, keyWords: this.filterQuery.keyWords, mainAction: this.filterQuery.mainAction, - action: this.filterQuery.action - + action: this.filterQuery.action, + locInvName:this.$store.getters.locInvName, }; if (this.actDateRange !== null) { printParams.startAduditTime = this.actDateRange[0]; From 835a00383f9a94510f789168e611b29980e6ad5c Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Thu, 30 May 2024 15:29:44 +0800 Subject: [PATCH 2/4] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=E6=89=93?= =?UTF-8?q?=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/supInoutSearchOrder.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/inventory/supInoutSearchOrder.vue b/src/views/inventory/supInoutSearchOrder.vue index 4761da81..2c57ec53 100644 --- a/src/views/inventory/supInoutSearchOrder.vue +++ b/src/views/inventory/supInoutSearchOrder.vue @@ -680,6 +680,7 @@ export default { mainAction: this.filterQuery.mainAction, action: this.filterQuery.action, locInvName:this.$store.getters.locInvName, + employeeName: this.$store.getters.user.employeeName, }; if (this.actDateRange !== null) { printParams.startAduditTime = this.actDateRange[0]; From 464692e1d4f3b3382d7ad5d8ae5ecb85baa5d55f Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Fri, 31 May 2024 10:47:50 +0800 Subject: [PATCH 3/4] =?UTF-8?q?feat:=200531=E7=A7=91=E5=AE=A4=E5=87=BA?= =?UTF-8?q?=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/ioDepartmentOrder.js | 8 +++++++ src/components/inout/baziPanel.vue | 31 +++++++++++++++++++++++++-- src/views/inout/IoDepartmentOrder.vue | 26 +++++++++++++++++++--- 3 files changed, 60 insertions(+), 5 deletions(-) diff --git a/src/api/inout/ioDepartmentOrder.js b/src/api/inout/ioDepartmentOrder.js index 9a08fcab..8afa936b 100644 --- a/src/api/inout/ioDepartmentOrder.js +++ b/src/api/inout/ioDepartmentOrder.js @@ -31,3 +31,11 @@ export function clickToTriggerbyCode(data) { params: data }); } + +export function deleteSkSicker(data) { + return axios({ + url: "/udiwms/inout/ioDepartmentOrder/deleteSkSicker", + method: "delete", + params: data + }); +} diff --git a/src/components/inout/baziPanel.vue b/src/components/inout/baziPanel.vue index 3c05a357..995fc5b6 100644 --- a/src/components/inout/baziPanel.vue +++ b/src/components/inout/baziPanel.vue @@ -1,7 +1,10 @@