From b92af9cc3e7600eaf3be05c4bc582521ab89b170 Mon Sep 17 00:00:00 2001 From: x_z Date: Fri, 4 Nov 2022 15:54:44 +0800 Subject: [PATCH] =?UTF-8?q?1.=E8=B0=83=E6=95=B4=E7=9B=98=E7=82=B9=E6=96=B9?= =?UTF-8?q?=E5=BC=8F=EF=BC=8C=E4=BF=AE=E6=94=B9=E6=96=B0=E5=A2=9E=E7=9B=98?= =?UTF-8?q?=E7=82=B9=E5=8D=95=E9=A1=B5=E9=9D=A2=E6=8E=A7=E5=88=B6=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inventory/InvProducts.js | 8 + src/views/inventory/addCountOrder.vue | 193 +++++++++++++---------- src/views/inventory/countOrderCodes.vue | 2 +- src/views/inventory/invCountOrderNew.vue | 24 ++- 4 files changed, 145 insertions(+), 82 deletions(-) diff --git a/src/api/inventory/InvProducts.js b/src/api/inventory/InvProducts.js index 34edd17..f946570 100644 --- a/src/api/inventory/InvProducts.js +++ b/src/api/inventory/InvProducts.js @@ -50,3 +50,11 @@ export function checkCodeSpace(data) { data: data }); } + +export function getCountInvProductProduct(params) { + return axios({ + url: "spms/inv/products/getCountInvProductProduct", + method: "get", + params: params + }) +} diff --git a/src/views/inventory/addCountOrder.vue b/src/views/inventory/addCountOrder.vue index ce713f5..a4093fd 100644 --- a/src/views/inventory/addCountOrder.vue +++ b/src/views/inventory/addCountOrder.vue @@ -1,20 +1,33 @@