From 5da9a04140a64b3a76b37b9993fc82b1e8d24600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E6=98=8E=E6=A2=81?= <2429105222@qq.com> Date: Tue, 9 May 2023 15:58:10 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=A9=E8=B5=84=E6=91=86=E6=94=BE=E4=B8=8B?= =?UTF-8?q?=E6=9E=B6=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inventory/invPlace.js | 16 + src/views/inventory/InvCheckPlace.vue | 318 ++++++++++++++++++ src/views/inventory/InvOutPlace.vue | 296 ++++++++++++++++ src/views/inventory/InvPlace.vue | 21 +- .../inventory/InvProductPlaceOutModify.vue | 313 +++++++++++++++++ 5 files changed, 944 insertions(+), 20 deletions(-) create mode 100644 src/views/inventory/InvCheckPlace.vue create mode 100644 src/views/inventory/InvOutPlace.vue create mode 100644 src/views/inventory/InvProductPlaceOutModify.vue diff --git a/src/api/inventory/invPlace.js b/src/api/inventory/invPlace.js index f0dac60f..35cc1684 100644 --- a/src/api/inventory/invPlace.js +++ b/src/api/inventory/invPlace.js @@ -16,6 +16,14 @@ export function bindInvSpace(data) { }); } +export function unbindInvOrderSpace(data) { + return axios({ + url: "/spms/inv/product/unbindInvOrderSpace", + method: "post", + data: data + }); +} + export function bindInvOrderSpace(data) { return axios({ url: "/spms/inv/product/bindInvOrderSpace", @@ -40,6 +48,14 @@ export function getInvProductInfo(params) { }); } +export function getInvProductOutInfo(params) { + return axios({ + url: "/spms/inv/product/getInvProductOutInfo", + method: "get", + params: params + }); +} + export function getCheckInvProductInfo(params) { return axios({ url: "/spms/inv/product/getCheckInvProductInfo", diff --git a/src/views/inventory/InvCheckPlace.vue b/src/views/inventory/InvCheckPlace.vue new file mode 100644 index 00000000..ccd41f48 --- /dev/null +++ b/src/views/inventory/InvCheckPlace.vue @@ -0,0 +1,318 @@ + + + + + + diff --git a/src/views/inventory/InvOutPlace.vue b/src/views/inventory/InvOutPlace.vue new file mode 100644 index 00000000..8ce507e7 --- /dev/null +++ b/src/views/inventory/InvOutPlace.vue @@ -0,0 +1,296 @@ + + + + + + diff --git a/src/views/inventory/InvPlace.vue b/src/views/inventory/InvPlace.vue index 1343b083..d8dabfec 100644 --- a/src/views/inventory/InvPlace.vue +++ b/src/views/inventory/InvPlace.vue @@ -104,7 +104,7 @@ 查询 按物资上架 按单上架 - 货位变更 + @@ -174,20 +174,6 @@ > - - - - - @@ -224,7 +210,6 @@ export default { loading: false, productPlaceDialogVisible: false, orderPlaceDialogVisible: false, - placeChangeDialogVisible: false, typeNames: { 1: "按物资上架", 2: "按单上架" @@ -308,8 +293,6 @@ export default { this.productPlaceDialogVisible = true; } else if (type === 2) { this.orderPlaceDialogVisible = true; - } else if (type === 3) { - this.placeChangeDialogVisible = true; } }, closePlaceDialog(type) { @@ -317,8 +300,6 @@ export default { this.productPlaceDialogVisible = false; } else if (type === 2) { this.orderPlaceDialogVisible = false; - } else if (type === 3) { - this.placeChangeDialogVisible = false; } this.getList(); }, diff --git a/src/views/inventory/InvProductPlaceOutModify.vue b/src/views/inventory/InvProductPlaceOutModify.vue new file mode 100644 index 00000000..5d69982c --- /dev/null +++ b/src/views/inventory/InvProductPlaceOutModify.vue @@ -0,0 +1,313 @@ + + + + +