소스 검색

销售订单统计图接口

liuchaohui 2 년 전
부모
커밋
b5c42ab988
1개의 변경된 파일25개의 추가작업 그리고 1개의 파일을 삭제
  1. 25 1
      jeecg-boot-module-system/src/main/java/org/jeecg/modules/report/controller/SoSoDetailsController.java

+ 25 - 1
jeecg-boot-module-system/src/main/java/org/jeecg/modules/report/controller/SoSoDetailsController.java

@@ -168,7 +168,7 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
 	 /**
 	  * 订单统计报表查询
 	  * 根据开始年份月份(yyyy-mm)、结束年份月份(yyyy-mm)、类型(内部/外部)查询订单统计数据  如果不传类型则查询时间范围全部的
-	  * @param map startYearMonth endYearMonth vendorType
+	  * @param  startYearMonth endYearMonth vendorType
 	  * @return
 	  */
 	 @AutoLog(value = "订单统计报表查询")
@@ -195,4 +195,28 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
 		 return result;
 	 }
 
+	 /**
+	  订单报表统计图-部门
+	  */
+	 @AutoLog(value = "订单报表统计图-部门")
+	 @ApiOperation(value="订单报表统计图-部门", notes="订单报表统计图-部门")
+	 @GetMapping(value = "/QuerySO_SOMainReportBydepartment")
+	 public Result<List<JSONObject>> QuerySO_SOMainReportBydepartment(String vendorType,String startYearMonth,String endYearMonth,
+														String department){
+
+		 return null;
+	 }
+
+	 /**
+	  订单报表统计图-客户
+	  */
+	 @AutoLog(value = "订单报表统计图-客户")
+	 @ApiOperation(value="订单报表统计图-客户", notes="订单报表统计图-客户")
+	 @GetMapping(value = "/QuerySO_SOMainReportBycustomer")
+	 public Result<List<JSONObject>> QuerySO_SOMainReportBycustomer(String vendorType,String startYearMonth,String endYearMonth,
+																	 String customer){
+
+		 return null;
+	 }
+
 }