diff --git a/src/api/workbench.ts b/src/api/workbench.ts index f3dd0bdf..bbbccdf0 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 a383fd3a..710ce6e3 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 00000000..3ab9a52d --- /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 29e156ba..d1969438 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) => {