From d89e13e25b8beb1f4992ad4119f61e4515754739 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期二, 03 二月 2026 10:11:52 +0800
Subject: [PATCH] feat(product-process): 添加产品工序导入验证功能

---
 src/main/java/com/ruoyi/home/service/HomeService.java |   66 +++++++++++++++++++++++++++++++--
 1 files changed, 62 insertions(+), 4 deletions(-)

diff --git a/src/main/java/com/ruoyi/home/service/HomeService.java b/src/main/java/com/ruoyi/home/service/HomeService.java
index 010e8c1..a2e113d 100644
--- a/src/main/java/com/ruoyi/home/service/HomeService.java
+++ b/src/main/java/com/ruoyi/home/service/HomeService.java
@@ -1,9 +1,8 @@
 package com.ruoyi.home.service;
 
 import com.ruoyi.approve.pojo.ApproveProcess;
+import com.ruoyi.dto.MapDto;
 import com.ruoyi.home.dto.*;
-import com.ruoyi.production.dto.ProductOrderDto;
-import com.ruoyi.production.dto.ProductWorkOrderDto;
 
 import java.text.ParseException;
 import java.util.List;
@@ -31,6 +30,65 @@
 
     Long noticesCount();
 
-     ProductionProgressDto productionProgress();
-     Map<Integer, List<ProductWorkOrderDto>> workInProcessTurnover();
+    ProductionProgressDto productionProgress();
+
+    ProductionTurnoverDto workInProcessTurnover();
+
+    DeptStaffDistributionDto deptStaffDistribution();
+
+    HomeSummaryDto summaryStatistics();
+
+    List<SupplierPurchaseRankingDto> supplierPurchaseRanking(Integer type);
+
+    CustomerRevenueAnalysisDto customerRevenueAnalysis(Long customerId, Integer type);
+
+    ProductCategoryDistributionDto productCategoryDistribution();
+
+    List<CustomerContributionRankingDto> customerContributionRanking(Integer type);
+
+    List<MapDto> productSalesAnalysis();
+
+    List<MapDto> rawMaterialPurchaseAmountRatio();
+
+    List<MapDto> salesPurchaseStorageProductCount();
+
+    List<Map<String, Object>> productInOutAnalysis(Integer type);
+
+    List<MapDto> productTurnoverDays();
+
+    List<Map<String, Object>> incomeExpenseAnalysis(Integer type);
+
+    List<MapDto> profitTrendAnalysis();
+
+    List<MapDto> expenseCompositionAnalysis(Integer type);
+
+    MonthlyIncomeDto monthlyIncome();
+
+    MonthlyExpenditureDto monthlyExpenditure();
+
+    List<InputOutputAnalysisDto> inputOutputAnalysis(Integer type);
+
+    List<MapDto> processOutputAnalysis(Integer type);
+
+    List<WorkOrderEfficiencyDto> workOrderEfficiencyAnalysis(Integer type);
+
+    List<ProductionAccountingDto> productionAccountingAnalysis(Integer type);
+
+    List<MapDto> orderCount();
+
+    QualityQualifiedAnalysisDto rawMaterialDetection(Integer type);
+
+    QualityQualifiedAnalysisDto processDetection(Integer type);
+
+    QualityQualifiedAnalysisDto factoryDetection(Integer type);
+
+    QualityInspectionCountDto qualityInspectionCount();
+
+    NonComplianceWarningDto nonComplianceWarning();
+
+    List<CompletedInspectionCountDto> completedInspectionCount();
+
+    List<UnqualifiedProductRankDto> unqualifiedProductRanking();
+
+    List<MapDto> unqualifiedProductProcessingAnalysis();
 }

--
Gitblit v1.9.3