From 3e45eca2fd23a967e94d95ae842b4df8376b4cbe Mon Sep 17 00:00:00 2001 From: anthonywj Date: Mon, 30 Oct 2023 19:05:35 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=86=E7=94=A8=E7=9B=B8=E5=85=B3=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 4 +- src/api/system/invSubWarehouse.js | 9 + src/views/inout/DialogSelectInvProduct.vue | 109 ++++++--- src/views/inout/DialogSelectReceiveOrder.vue | 55 +++-- src/views/inout/IoCreateBusOrder.vue | 2 +- src/views/inout/receive/DialogNewReceive.vue | 208 +++++++++--------- src/views/inout/receive/receiveAudit.vue | 6 +- src/views/inout/receive/receiveMySearch.vue | 1 + src/views/inout/receive/receiveSearch.vue | 8 +- .../inventory/InvPreInProductsDetail.vue | 13 +- src/views/inventory/InvPreProductsDetail.vue | 12 +- src/views/inventory/InvProductsDetail.vue | 7 + .../purApply/purOrderSelectProduct.vue | 6 +- src/views/system/dept/authDept.vue | 26 ++- src/views/system/dept/invWarehouse.vue | 37 ++-- src/views/system/menu/index.vue | 11 +- 16 files changed, 295 insertions(+), 219 deletions(-) diff --git a/.env.production b/.env.production index 118755df..95d63315 100644 --- a/.env.production +++ b/.env.production @@ -8,7 +8,7 @@ ENV = 'production' #林纪裕cd -# VUE_APP_BASE_API = 'http://www.linjiyu.lol:81/UDI_WMS_MC/' +VUE_APP_BASE_API = 'http://www.linjiyu.lol:81/UDI_WMS_MC/' # VUE_APP_BASE_API = 'http://www.linjiyu.lol:83/UDI_WMS_MC/' # VUE_APP_BASE_API = 'http://127.0.0.1:9150/UDI_WMS_MC/' @@ -30,7 +30,7 @@ ENV = 'production' # VUE_APP_BASE_API = 'http://192.168.0.242:9150/UDI_WMS_MC/' # 平潭正式 -VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/' +# VUE_APP_BASE_API = 'http://55.55.0.62:9150/UDI_WMS_MC/' # 吴总测试服务器. diff --git a/src/api/system/invSubWarehouse.js b/src/api/system/invSubWarehouse.js index cbaf51d3..2ba37bb2 100644 --- a/src/api/system/invSubWarehouse.js +++ b/src/api/system/invSubWarehouse.js @@ -49,6 +49,15 @@ export function findByUp(query) { } +export function findLyInv(query) { + return axios({ + url: "/spms/inv/warehouse/findLyInv", + method: "get", + params: query + }); +} + + export function filterSubByInv(query) { return axios({ url: "/spms/inv/warehouse/findByUser", diff --git a/src/views/inout/DialogSelectInvProduct.vue b/src/views/inout/DialogSelectInvProduct.vue index edb361a7..eb4b8c9a 100644 --- a/src/views/inout/DialogSelectInvProduct.vue +++ b/src/views/inout/DialogSelectInvProduct.vue @@ -1,17 +1,17 @@