gongchunyi
2 天以前 940ceef4c4adf20c0b9da9270f1cd5ed58e14a4c
src/main/java/com/ruoyi/home/service/HomeService.java
@@ -1,13 +1,12 @@
package com.ruoyi.home.service;
import com.ruoyi.approve.pojo.ApproveProcess;
import com.ruoyi.home.dto.AnalysisCustomerContractAmountsDto;
import com.ruoyi.home.dto.HomeBusinessDto;
import com.ruoyi.home.dto.QualityStatisticsDto;
import com.ruoyi.home.dto.StatisticsReceivablePayableDto;
import com.ruoyi.dto.MapDto;
import com.ruoyi.home.dto.*;
import java.text.ParseException;
import java.util.List;
import java.util.Map;
/**
 * @author :yys
@@ -26,4 +25,69 @@
    List<ApproveProcess> todos() throws ParseException;
    StatisticsReceivablePayableDto statisticsReceivablePayable(Integer type);
    Map<String, Object> approveAndDeviceTodos();
    Long noticesCount();
    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();
    List<QualityQualifiedAnalysisDto> rawMaterialDetection(Integer type);
    List<QualityQualifiedAnalysisDto> processDetection(Integer type);
    List<QualityQualifiedAnalysisDto> factoryDetection(Integer type);
    QualityInspectionCountDto qualityInspectionCount();
    NonComplianceWarningDto nonComplianceWarning();
    List<CompletedInspectionCountDto> completedInspectionCount();
    List<UnqualifiedProductRankDto> unqualifiedProductRanking();
    List<MapDto> unqualifiedProductProcessingAnalysis();
}