From 257242567339665a587f8d66883c20df1b7bf01d Mon Sep 17 00:00:00 2001 From: anthonywj Date: Tue, 25 Apr 2023 13:36:51 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=89=E6=9C=9F?= =?UTF-8?q?=E6=8B=A3=E8=B4=A7=EF=BC=8C=E6=97=A0=E4=B8=89=E6=9C=9F=E6=8B=A3?= =?UTF-8?q?=E8=B4=A7=EF=BC=8C=E4=B8=BA=E9=85=8D=E8=B4=A7=E7=AD=89=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inout/order.js | 7 + src/api/inout/orderDetailBiz.js | 9 +- .../basic/busType/bussinessTypeModify.vue | 81 ++- src/views/inout/DialogCreateOrder.vue | 90 ++- src/views/inout/IoWaitAllocateOrder.vue | 677 ++++++++++++++++++ 5 files changed, 805 insertions(+), 59 deletions(-) create mode 100644 src/views/inout/IoWaitAllocateOrder.vue diff --git a/src/api/inout/order.js b/src/api/inout/order.js index 031b8d6..083084b 100644 --- a/src/api/inout/order.js +++ b/src/api/inout/order.js @@ -49,6 +49,13 @@ export function submitBiz(query) { }); } +export function submitAllocateBiz(query) { + return axios({ + url: "/warehouse/inout/waitAllocate/submitOrderWeb", + method: "post", + data: query + }); +} export function saveOrderWeb(query) { return axios({ diff --git a/src/api/inout/orderDetailBiz.js b/src/api/inout/orderDetailBiz.js index fc89016..dcbd347 100644 --- a/src/api/inout/orderDetailBiz.js +++ b/src/api/inout/orderDetailBiz.js @@ -41,7 +41,6 @@ export function insertInvoice(params) { } - export function getCheckDetailList(params) { return axios({ url: "/udiwms/inout/wditCheck/filterList", @@ -50,6 +49,14 @@ export function getCheckDetailList(params) { }); } +export function getWaitAllocateList(params) { + return axios({ + url: "/udiwms/inout/waitAllocate/filterList", + method: "get", + params: params + }); +} + export function updateOrder(params) { return axios({ diff --git a/src/views/basic/busType/bussinessTypeModify.vue b/src/views/basic/busType/bussinessTypeModify.vue index 6ca76b0..88fb935 100644 --- a/src/views/basic/busType/bussinessTypeModify.vue +++ b/src/views/basic/busType/bussinessTypeModify.vue @@ -526,11 +526,14 @@ - - - + + + + + @@ -546,11 +549,14 @@ - - - + + + + + @@ -566,11 +572,14 @@ - - - + + + + + @@ -586,11 +595,14 @@ - - - + + + + + @@ -606,11 +618,14 @@ - - - + + + + + @@ -626,11 +641,14 @@ - - - + + + + + @@ -645,11 +663,14 @@ - - - + + + + + @@ -665,11 +686,14 @@ - - - + + + + + @@ -684,11 +708,14 @@ - - - + + + + + diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index cd93277..c9d3ab8 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -18,6 +18,12 @@ >立即提交 + + 未配货提交 + + @@ -232,7 +238,7 @@ + + + From d129c20613f0f6568d3c38d4abf491be759dc35a Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Tue, 25 Apr 2023 17:32:34 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/inventory/InvSupPreInProducts.vue | 6 ++++++ src/views/inventory/InvSupPreProducts.vue | 4 ++++ src/views/inventory/InvSupProuducts.vue | 5 ++++- src/views/sync/SysUdimsData.vue | 8 ++++++-- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/src/views/inventory/InvSupPreInProducts.vue b/src/views/inventory/InvSupPreInProducts.vue index 1c33e53..a0e5fe9 100644 --- a/src/views/inventory/InvSupPreInProducts.vue +++ b/src/views/inventory/InvSupPreInProducts.vue @@ -88,6 +88,7 @@ :loading="corpLoading" @change="corpChange" style="width: 90%" + @clear="clear" > - 查询 + 查询 同步单据 @@ -191,12 +191,16 @@ export default { id: null, status: null, page: 1, - limit: 20, + limit: 10, }; this.syncTime = null; this.getList(); }, + search(){ + this.filterQuery.page=1; + this.getList(); + }, getList() { this.loading = true; this.filterQuery.syncTime = this.syncTime; From 43e316414d31d697c7eae4c5cbe7896320d6019c Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Wed, 26 Apr 2023 09:24:17 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E7=89=A9=E8=B5=84?= =?UTF-8?q?=E5=88=86=E7=B1=BB=20=E7=BB=91=E5=AE=9A=E9=87=8D=E7=BD=AE?= =?UTF-8?q?=E4=B9=8B=E5=90=8E=E6=95=B0=E6=8D=AE=E4=B8=8E=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=B8=8D=E7=AC=A6=E5=90=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basic/product/bindHospProduct.vue | 3 ++- src/views/supplier/products/supDiProductsCheck.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/basic/product/bindHospProduct.vue b/src/views/basic/product/bindHospProduct.vue index d010fca..667afa4 100644 --- a/src/views/basic/product/bindHospProduct.vue +++ b/src/views/basic/product/bindHospProduct.vue @@ -159,7 +159,8 @@ export default { page: 1, limit: 20, addType: 1, - diType: 1 + diType: 1, + bindType: 1 }; this.getList(); }, diff --git a/src/views/supplier/products/supDiProductsCheck.vue b/src/views/supplier/products/supDiProductsCheck.vue index 5d337ab..42011ae 100644 --- a/src/views/supplier/products/supDiProductsCheck.vue +++ b/src/views/supplier/products/supDiProductsCheck.vue @@ -4,7 +4,7 @@ - +