diff --git a/src/views/statistics/check_record_gx.vue b/src/views/statistics/gxerp/check_record_gx.vue
similarity index 100%
rename from src/views/statistics/check_record_gx.vue
rename to src/views/statistics/gxerp/check_record_gx.vue
diff --git a/src/views/statistics/good_check_gx.vue b/src/views/statistics/gxerp/good_check_gx.vue
similarity index 100%
rename from src/views/statistics/good_check_gx.vue
rename to src/views/statistics/gxerp/good_check_gx.vue
diff --git a/src/views/statistics/good_check_gx2.vue b/src/views/statistics/gxerp/good_check_gx2.vue
similarity index 100%
rename from src/views/statistics/good_check_gx2.vue
rename to src/views/statistics/gxerp/good_check_gx2.vue
diff --git a/src/views/statistics/gxerp/good_statistic.vue b/src/views/statistics/gxerp/good_statistic.vue
new file mode 100644
index 00000000..b03c9769
--- /dev/null
+++ b/src/views/statistics/gxerp/good_statistic.vue
@@ -0,0 +1,72 @@
+
+
+
+
+ 物料仓库合格库存统计
+ 仓库总数:{{ totalCount }}
+ 刷新
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/statistics/material_wh_summary.vue b/src/views/statistics/gxerp/material_wh_summary.vue
similarity index 89%
rename from src/views/statistics/material_wh_summary.vue
rename to src/views/statistics/gxerp/material_wh_summary.vue
index 53c10e8a..1d18069c 100644
--- a/src/views/statistics/material_wh_summary.vue
+++ b/src/views/statistics/gxerp/material_wh_summary.vue
@@ -1,7 +1,7 @@
@@ -25,15 +25,13 @@
-
-
-
- {{ k.label }} · 现有库存合计
- {{ fmtNum(k.total) }}
- 覆盖 {{ k.count }} 个型号
-
-
-
+
+
+ {{ k.label }} · 现有库存合计
+ {{ fmtNum(k.total) }}
+ 覆盖 {{ k.count }} 个型号
+
+
@@ -103,6 +101,18 @@
+
+
+
+ 半成品库周数据(入库=采购入库+生产入库 / 出库=生产领料)
+
+
+
+
+
+
+
+
@@ -136,6 +146,7 @@ import scEcharts from "@/components/scEcharts/index.vue";
const BLOCKS = [
{ key: "原料", color: "#409EFF" },
{ key: "成品", color: "#67C23A" },
+ { key: "半成品", color: "#B37FEB" },
{ key: "白玻", color: "#E6A23C" },
{ key: "黑玻", color: "#909399" },
];
@@ -151,6 +162,7 @@ export default {
ds1: [],
ds2: [],
ds3: [],
+ ds4: [],
safeDialog: {
visible: false,
saving: false,
@@ -267,6 +279,7 @@ export default {
this.ds1 = d.ds1 || [];
this.ds2 = d.ds2 || [];
this.ds3 = d.ds3 || [];
+ this.ds4 = d.ds4 || [];
})
.finally(() => {
this.loading = false;
@@ -335,8 +348,19 @@ export default {