|
|
@@ -64,7 +64,7 @@ public class StatisticsApiController extends CertifyApiController {
|
|
|
@RequestMapping(value="/selectProvincialStatistics" ,method = RequestMethod.GET)
|
|
|
public Result selectProvincialStatistics(InputProvincialStatistics is){
|
|
|
Result res=new Result();
|
|
|
- res.setData(projectStatisticsService.selectProvincialStatistics( is));
|
|
|
+ res.setData(projectStatisticsService.selectProvincialStatistics(is));
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
@@ -76,7 +76,7 @@ public class StatisticsApiController extends CertifyApiController {
|
|
|
@RequestMapping(value = "/exporProvincialList", method = RequestMethod.GET)
|
|
|
public Result exporProvincialList(InputProvincialStatistics ib){
|
|
|
Result res=new Result();
|
|
|
- return projectStatisticsService.exporProvincialList( ib);
|
|
|
+ return projectStatisticsService.exporProvincialList(ib);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -85,7 +85,7 @@ public class StatisticsApiController extends CertifyApiController {
|
|
|
@RequestMapping(value="/orderSalesSource" ,method = RequestMethod.GET)
|
|
|
public Result orderSalesSource(InputOrderSalesSource in){
|
|
|
Result res=new Result();
|
|
|
- res.setData(orderStatisticsService.orderSalesSource( in));
|
|
|
+ res.setData(orderStatisticsService.orderSalesSource(in));
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
@@ -94,7 +94,7 @@ public class StatisticsApiController extends CertifyApiController {
|
|
|
*/
|
|
|
@RequestMapping(value="/orderSalesSource/export" ,method = RequestMethod.GET)
|
|
|
public Result orderSalesSourceExport(InputOrderSalesSource in){
|
|
|
- List<OutOrderSalesSource> list =orderStatisticsService.orderSalesSource( in);
|
|
|
+ List<OutOrderSalesSource> list =orderStatisticsService.orderSalesSource(in);
|
|
|
NewExcelUtil<OutOrderSalesSource> excelUtil=new NewExcelUtil<>(OutOrderSalesSource.class);
|
|
|
StringBuffer str=new StringBuffer("搜索条件=》");
|
|
|
if (in.getDepName()!=null){
|