From 6b459d5a2f80a9065062f7af8c13b8a69ca23915 Mon Sep 17 00:00:00 2001 From: MrZhai Date: Thu, 3 Mar 2022 17:45:47 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=8F=90=E4=BA=A4=E5=BA=93=E5=AD=98=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E5=8A=9F=E8=83=BD=E7=9B=B8=E5=85=B3=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/inventory/InvStatistics.js | 18 ++ src/router/index.js | 20 ++ src/views/inventory/InvStatistics.vue | 336 ++++++++++++++++++++++++++ 3 files changed, 374 insertions(+) create mode 100644 src/api/inventory/InvStatistics.js create mode 100644 src/views/inventory/InvStatistics.vue diff --git a/src/api/inventory/InvStatistics.js b/src/api/inventory/InvStatistics.js new file mode 100644 index 0000000..3e947d4 --- /dev/null +++ b/src/api/inventory/InvStatistics.js @@ -0,0 +1,18 @@ +import axios from "../../utils/axios"; + +export function stockStatistics(query) { + return axios({ + url: "/spms/inv/products/stockStatistics", + method: "get", + params: query + }); +} + + +export function getStorageCode(query) { + return axios({ + url: "/spms/inv/warehouse/filter", + method: "get", + params: query + }); +} diff --git a/src/router/index.js b/src/router/index.js index 68107a7..28523a6 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -91,6 +91,7 @@ import supInvPreProducts from "../views/inventory/supInvPreProducts" import invUdiTrace from "@/views/inventory/invUdiTrace"; import invUdiTraceOrder from "@/views/inventory/invUdiTraceOrder"; import additionalOrder from "@/views/warehouse/AdditionalOrder"; +import invStatistics from "@/views/inventory/InvStatistics"; const err401 = r => @@ -748,6 +749,15 @@ export const asyncRouterMap = [ authRule: ["inv/invProducts"] } }, + { + path: "invStatistics", + component: invStatistics, + name: "库存统计", + icon: "", + meta: { + authRule: ["inv/invProducts"] + } + }, { path: "invPreProducts", component: invPreProducts, @@ -992,6 +1002,16 @@ export const asyncRouterMap = [ authRule: ["spInv/spInvProducts"] } }, + { + path: "spInvProducts", + component: supInvProducts, + name: "库存统计", + icon: "", + hidden: false, + meta: { + authRule: ["spInv/spInvProducts"] + } + }, { path: "spInvPreProducts", component: supInvPreProducts, diff --git a/src/views/inventory/InvStatistics.vue b/src/views/inventory/InvStatistics.vue new file mode 100644 index 0000000..7c6b93c --- /dev/null +++ b/src/views/inventory/InvStatistics.vue @@ -0,0 +1,336 @@ + + + + +