From d4976ad236a256d5e6cdceae6bf1475f4ea5ae88 Mon Sep 17 00:00:00 2001 From: x_z Date: Mon, 13 Feb 2023 16:38:25 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=B7=BB=E5=8A=A0=E5=BA=93=E5=AD=98=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inventory/invPorduct.js | 8 + src/views/inventory/InvProducts.vue | 2 +- src/views/inventory/InvStatistics.vue | 349 ++++++++++++++++++++++++++ 3 files changed, 358 insertions(+), 1 deletion(-) create mode 100644 src/views/inventory/InvStatistics.vue diff --git a/src/api/inventory/invPorduct.js b/src/api/inventory/invPorduct.js index ccccecc3..4ae60bda 100644 --- a/src/api/inventory/invPorduct.js +++ b/src/api/inventory/invPorduct.js @@ -23,3 +23,11 @@ export function deleteInvProduct(data) { data: data }); } + +export function stockStatistics(params) { + return axios({ + url: "/spms/inv/product/stockStatistics", + method: "get", + params: params + }); +} diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue index 9e598ed0..a7708a5e 100644 --- a/src/views/inventory/InvProducts.vue +++ b/src/views/inventory/InvProducts.vue @@ -308,7 +308,7 @@ export default { detailDialog(row) { this.detailDialogVisible = true; this.inputQuery = { - relId: row.relId, + relId: row.relIdFk, cpmctymc: row.cpmctymc, nameCode: row.nameCode, batchNo: row.batchNo, diff --git a/src/views/inventory/InvStatistics.vue b/src/views/inventory/InvStatistics.vue new file mode 100644 index 00000000..54512f3c --- /dev/null +++ b/src/views/inventory/InvStatistics.vue @@ -0,0 +1,349 @@ + + + + + +