yzc 1 year ago
parent
commit
1dc6b0fa10

+ 10 - 5
hx-sale/src/main/java/com/fjhx/sale/service/contract/ContractService.java

@@ -77,6 +77,7 @@ public interface ContractService extends BaseService<Contract> {
 
     /**
      * 根据客户ID查询未包装的订单
+     *
      * @param customerId
      * @return
      */
@@ -94,18 +95,21 @@ public interface ContractService extends BaseService<Contract> {
 
     /**
      * 查询销售额(合同总金额)
+     *
      * @param id(买方公司ID)
      */
-    ContractVo  getSalesTotal(Long id);
+    ContractVo getSalesTotal(Long id);
 
     /**
      * 查询指定客户的每月合同总额
+     *
      * @param dto
      */
     List<ContractVo> getAmount(CustomerDto dto);
 
     /**
      * 查询成交单统计(合同)
+     *
      * @param query
      * @return
      */
@@ -113,6 +117,7 @@ public interface ContractService extends BaseService<Contract> {
 
     /**
      * 销售趋势(数据看板-产品分析页面)
+     *
      * @param productInfoDto
      */
     List<Map<String, Object>> saleTrend(ProductInfoSelectDto productInfoDto);
@@ -120,7 +125,7 @@ public interface ContractService extends BaseService<Contract> {
     /**
      * 销售统计(数据看板-销售分析页面开发)
      */
-    Map<String, Object>  salesStatistics(ContractDto dto);
+    Map<String, Object> salesStatistics(ContractDto dto);
 
     /**
      * 国家销售统计(数据看板-销售分析页面开发)
@@ -195,15 +200,15 @@ public interface ContractService extends BaseService<Contract> {
      *
      * @return
      */
-    Map<String,Object> getHeadCustomerStatistics(ContractSelectDto dto);
     Map<String, Object> getHeadCustomerStatistics(ContractSelectDto dto);
 
     /**
      * 中间合同打印PDF获取合同相关数据
+     *
      * @param newContractId 最新一条单证合同ID
-     * @param contractIds 所有单证合同ID集合
+     * @param contractIds   所有单证合同ID集合
      * @return
      */
-    Map<String,Object> getDocumentaryPdf(Long newContractId,List<Long> contractIds);
+    Map<String, Object> getDocumentaryPdf(Long newContractId, List<Long> contractIds);
 
 }