|
@@ -5,6 +5,7 @@ package com.gyee.runeconomy.controller.bmk;/*
|
|
|
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
import com.gyee.common.util.DateUtils;
|
|
|
+import com.gyee.common.util.SortUtils;
|
|
|
import com.gyee.common.vo.benchmark.FjjxbVo;
|
|
|
import com.gyee.common.vo.benchmark.FjjxbmxVo;
|
|
|
import com.gyee.common.vo.benchmark.WxsslVo;
|
|
@@ -176,18 +177,25 @@ public class BenchmarkingController {
|
|
|
Date date = DateUtils.parseDate(endDate);
|
|
|
String beginDate = DateUtils.toDate1(DateUtils.getFirstAndLastDayOfMonth(date));
|
|
|
List<WxsslVo> dateList = benchmarkingService.cndbthb(companys,type,wpid,beginDate,endDate);
|
|
|
+ WxsslVo vo = null;
|
|
|
if(dateList != null && dateList.size()>0){
|
|
|
dateList.get(0).setName("当月");
|
|
|
+ }else {
|
|
|
+ vo = new WxsslVo();
|
|
|
+ vo.setName("当月");
|
|
|
}
|
|
|
- resultList.add((dateList != null && dateList.size()>0)?dateList.get(0): null);
|
|
|
+ resultList.add((dateList != null && dateList.size()>0)?dateList.get(0): vo);
|
|
|
|
|
|
String yestmonthLastday = DateUtils.toDate1(DateUtils.getYestmonthLastday(date));
|
|
|
String yestmonthbeginday = DateUtils.toDate1(DateUtils.getFirstAndLastDayOfMonth(DateUtils.parseDate(yestmonthLastday)));
|
|
|
List<WxsslVo> hbList = benchmarkingService.cndbthb(companys,type,wpid,yestmonthbeginday,yestmonthLastday);
|
|
|
if(hbList != null && hbList.size()>0){
|
|
|
hbList.get(0).setName("环比");
|
|
|
+ }else {
|
|
|
+ vo = new WxsslVo();
|
|
|
+ vo.setName("环比");
|
|
|
}
|
|
|
- resultList.add((hbList != null && hbList.size()>0)?hbList.get(0): null);
|
|
|
+ resultList.add((hbList != null && hbList.size()>0)?hbList.get(0): vo);
|
|
|
|
|
|
Date subOneYear = DateUtils.subOneYear(date);
|
|
|
String tbbeginDate = DateUtils.toDate1(DateUtils.getMonthFirstZero(DateUtils.toDate1(subOneYear)));
|
|
@@ -195,8 +203,65 @@ public class BenchmarkingController {
|
|
|
List<WxsslVo> tbList = benchmarkingService.cndbthb(companys,type,wpid,tbbeginDate,tbendDate);
|
|
|
if(tbList != null && tbList.size()>0){
|
|
|
tbList.get(0).setName("同比");
|
|
|
+ }else {
|
|
|
+ vo = new WxsslVo();
|
|
|
+ vo.setName("同比");
|
|
|
}
|
|
|
- resultList.add((tbList != null && tbList.size()>0)?tbList.get(0): null);
|
|
|
+ resultList.add((tbList != null && tbList.size()>0)?tbList.get(0): vo);
|
|
|
+
|
|
|
+ SortUtils.sort(resultList,"llfdl",SortUtils.DESC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setZhpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"fdl",SortUtils.DESC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setFdlpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"fnlyl",SortUtils.DESC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setFnlylpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"gzssdl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setGzssdlpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"gzssl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setGzsslpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"jxssdl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setJxssdlpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"jxssl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setJxsslpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"xdssdl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setXdssdlpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"qfl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setQflpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"xnssdl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setXnssdlpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"xnssl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setXnsslpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"slssdl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setSlssdlpm(i+1);
|
|
|
+ }
|
|
|
+ SortUtils.sort(resultList,"slssl",SortUtils.ASC);
|
|
|
+ for (int i=0;i<resultList.size();i++){
|
|
|
+ resultList.get(i).setSlsslpm(i+1);
|
|
|
+ }
|
|
|
+
|
|
|
if (StringUtils.isNotNull(resultList)) {
|
|
|
return R.data(ResultMsg.ok(resultList));
|
|
|
} else {
|