瀏覽代碼

销售订单报表统计图 客户

liuchaohui 2 年之前
父節點
當前提交
fe9046d5a7

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

@@ -206,7 +206,7 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
 	 public Result<List<SoSoDetails>> QuerySO_SOMainReportBydepartment(String vendorType,String startYearMonth,String endYearMonth,
 														String department){
 		 Result<List<SoSoDetails>> result =new Result<>();
-		 List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBydepartment(vendorType, startYearMonth, endYearMonth, department);
+		 List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBydepartment(department,vendorType, startYearMonth, endYearMonth);
 		 result.setResult(list);
 		 return result;
 	 }
@@ -220,7 +220,7 @@ public class SoSoDetailsController extends JeecgController<SoSoDetails, ISoSoDet
 	 public Result<List<SoSoDetails>> QuerySO_SOMainReportBycustomer(String vendorType,String startYearMonth,String endYearMonth,
 																	 String customer){
 		 Result<List<SoSoDetails>> result =new Result<>();
-		 List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBycustomer(vendorType, startYearMonth, endYearMonth, customer);
+		 List<SoSoDetails> list = soSoDetailsService.QuerySO_SOMainReportBycustomer(customer,vendorType, startYearMonth, endYearMonth);
 		 result.setResult(list);
 		 return result;
 	 }