From 0c55c61c21f2b8dca129f002db1c22a1a66bfe07 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 24 Aug 2024 15:13:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=B7=A5=E4=BD=9C=E5=8F=B0AP?= =?UTF-8?q?I=EF=BC=8C=E6=B7=BB=E5=8A=A0=E8=B4=9F=E5=BA=93=E5=AD=98?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E7=BB=9F=E8=AE=A1=EF=BC=9B=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E5=BA=93=E5=AD=98=E7=BB=9F=E8=AE=A1=E9=A1=B5=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8E=92=E5=BA=8F=E5=8A=9F=E8=83=BD=EF=BC=9B?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=8F=90=E7=8E=B0=E8=AE=B0=E5=BD=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=EF=BC=8C=E5=A2=9E=E5=8A=A0openid=E5=88=97=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workbench.ts | 4 + src/views/finance/store_extract/index.vue | 1 + src/views/statistics/negative/index.vue | 94 +++++++++++++++++++++++ src/views/statistics/stock/index.vue | 22 +++++- 4 files changed, 120 insertions(+), 1 deletion(-) create mode 100644 src/views/statistics/negative/index.vue diff --git a/src/api/workbench.ts b/src/api/workbench.ts index f3dd0bdf4..bbbccdf01 100644 --- a/src/api/workbench.ts +++ b/src/api/workbench.ts @@ -63,3 +63,7 @@ export function total_warehouse_list(params: any) { export function total_warehouse_product_list(params: any) { return request.get({ url: '/workbench/total_warehouse_product_list', params }) } +// 负库存列表统计 +export function negative_inventory(params: any) { + return request.get({ url: '/workbench/negative_inventory', params }) +} diff --git a/src/views/finance/store_extract/index.vue b/src/views/finance/store_extract/index.vue index a383fd3a6..710ce6e31 100644 --- a/src/views/finance/store_extract/index.vue +++ b/src/views/finance/store_extract/index.vue @@ -57,6 +57,7 @@ + diff --git a/src/views/statistics/negative/index.vue b/src/views/statistics/negative/index.vue new file mode 100644 index 000000000..3ab9a52d4 --- /dev/null +++ b/src/views/statistics/negative/index.vue @@ -0,0 +1,94 @@ + + + + + + + + + + + + 查询 + 重置 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/statistics/stock/index.vue b/src/views/statistics/stock/index.vue index 29e156ba3..d19694385 100644 --- a/src/views/statistics/stock/index.vue +++ b/src/views/statistics/stock/index.vue @@ -31,6 +31,24 @@ @change="resetPage" /> + + + + + 查询 重置 @@ -238,7 +256,9 @@ const warehouseProductRef = ref(null) const queryParams = reactive({ store_name: '', class_all: '', - bar_code: '' + bar_code: '', + field: 'stock', + order_by: '' }) // 销量详情 const handleDetai = async (data: any) => {