|
@@ -11,14 +11,18 @@ import com.gyee.common.vo.specific.SpecificTargetVo;
|
|
import com.gyee.common.vo.specific.SpecificTopVo;
|
|
import com.gyee.common.vo.specific.SpecificTopVo;
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
|
|
+import com.gyee.runeconomy.service.TokenService;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay1Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay1Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay4Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay4Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay5Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay5Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay7Service;
|
|
import com.gyee.runeconomy.service.auto.IProEconPowerstationInfoDay7Service;
|
|
import com.gyee.runeconomy.service.bmk.BenchmarkingService;
|
|
import com.gyee.runeconomy.service.bmk.BenchmarkingService;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
+import org.springframework.web.context.request.RequestContextHolder;
|
|
|
|
+import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
import java.text.ParseException;
|
|
import java.text.ParseException;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
@@ -41,7 +45,8 @@ public class SpecificService {
|
|
private IProEconPowerstationInfoDay7Service proEconPowerstationInfoDay7Service;
|
|
private IProEconPowerstationInfoDay7Service proEconPowerstationInfoDay7Service;
|
|
@Resource
|
|
@Resource
|
|
private BenchmarkingService benchmarkingService;
|
|
private BenchmarkingService benchmarkingService;
|
|
-
|
|
|
|
|
|
+ @Resource
|
|
|
|
+ private TokenService tokenService;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 获取专题分析上面部分
|
|
* 获取专题分析上面部分
|
|
@@ -398,6 +403,10 @@ public class SpecificService {
|
|
* @param monthresultList
|
|
* @param monthresultList
|
|
*/
|
|
*/
|
|
private void setCenterYtqInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> monthresultList) {
|
|
private void setCenterYtqInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> monthresultList) {
|
|
|
|
+
|
|
|
|
+ HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
|
|
|
|
+ List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
|
|
|
|
+
|
|
String yearString = yearmonth.split("-")[0];
|
|
String yearString = yearmonth.split("-")[0];
|
|
String year = String.valueOf(Integer.parseInt(yearString) - 1);
|
|
String year = String.valueOf(Integer.parseInt(yearString) - 1);
|
|
String yearMonth = year+"-"+yearmonth.split("-")[1];
|
|
String yearMonth = year+"-"+yearmonth.split("-")[1];
|
|
@@ -416,8 +425,8 @@ public class SpecificService {
|
|
qw1.like("foreign_key_id","_GDC_");
|
|
qw1.like("foreign_key_id","_GDC_");
|
|
}
|
|
}
|
|
if (companys.endsWith("ZGS")){
|
|
if (companys.endsWith("ZGS")){
|
|
- qw.in("foreign_key_id",CacheContext.wpls.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
- qw1.in("foreign_key_id",CacheContext.wpls.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
|
|
+ qw.in("foreign_key_id",wplsToken.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
+ qw1.in("foreign_key_id",wplsToken.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
}
|
|
}
|
|
qw.eq("to_char(record_date,'yyyy-MM')",yearMonth);
|
|
qw.eq("to_char(record_date,'yyyy-MM')",yearMonth);
|
|
qw1.eq("to_char(record_date,'yyyy-MM')",yearMonth);
|
|
qw1.eq("to_char(record_date,'yyyy-MM')",yearMonth);
|
|
@@ -482,6 +491,9 @@ public class SpecificService {
|
|
* @param yearresultList
|
|
* @param yearresultList
|
|
*/
|
|
*/
|
|
private void setCenterNtqInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> yearresultList) throws ParseException {
|
|
private void setCenterNtqInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> yearresultList) throws ParseException {
|
|
|
|
+
|
|
|
|
+ HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
|
|
|
|
+ List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
|
|
String yearString = yearmonth.split("-")[0];
|
|
String yearString = yearmonth.split("-")[0];
|
|
String year = String.valueOf(Integer.parseInt(yearString) - 1);
|
|
String year = String.valueOf(Integer.parseInt(yearString) - 1);
|
|
QueryWrapper<ProEconPowerstationInfoDay4> qw = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay4> qw = new QueryWrapper<>();
|
|
@@ -498,8 +510,8 @@ public class SpecificService {
|
|
qw1.like("foreign_key_id","_GDC_");
|
|
qw1.like("foreign_key_id","_GDC_");
|
|
}
|
|
}
|
|
if (companys.endsWith("ZGS")){
|
|
if (companys.endsWith("ZGS")){
|
|
- qw.in("foreign_key_id",CacheContext.wpls.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
- qw1.in("foreign_key_id",CacheContext.wpls.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
|
|
+ qw.in("foreign_key_id",wplsToken.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
+ qw1.in("foreign_key_id",wplsToken.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
}
|
|
}
|
|
qw.eq("to_char(record_date,'yyyy')",year);
|
|
qw.eq("to_char(record_date,'yyyy')",year);
|
|
qw1.eq("to_char(record_date,'yyyy')",year);
|
|
qw1.eq("to_char(record_date,'yyyy')",year);
|
|
@@ -558,6 +570,9 @@ public class SpecificService {
|
|
* @param monthresultList
|
|
* @param monthresultList
|
|
*/
|
|
*/
|
|
private void setCenterDyInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> monthresultList) {
|
|
private void setCenterDyInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> monthresultList) {
|
|
|
|
+
|
|
|
|
+ HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
|
|
|
|
+ List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
|
|
QueryWrapper<ProEconPowerstationInfoDay4> qw = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay4> qw = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay7> qw1 = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay7> qw1 = new QueryWrapper<>();
|
|
qw.select("foreign_key_id,max(ymtbf) ymtbf,max(ymttr) ymttr,avg(rfwjsl) yfwjsl,avg(rztzhjsl) yztzhjsl,avg(rgzxqjsl) ygzxqjsl");
|
|
qw.select("foreign_key_id,max(ymtbf) ymtbf,max(ymttr) ymttr,avg(rfwjsl) yfwjsl,avg(rztzhjsl) yztzhjsl,avg(rgzxqjsl) ygzxqjsl");
|
|
@@ -573,8 +588,8 @@ public class SpecificService {
|
|
}
|
|
}
|
|
|
|
|
|
if (companys.endsWith("ZGS")){
|
|
if (companys.endsWith("ZGS")){
|
|
- qw.in("foreign_key_id",CacheContext.wpls.stream().filter(wp -> wp.getCompanyId().equals(companys)).map(wp -> wp.getId()).collect(Collectors.toList()));
|
|
|
|
- qw1.in("foreign_key_id",CacheContext.wpls.stream().filter(wp -> wp.getCompanyId().equals(companys)).map(wp -> wp.getId()).collect(Collectors.toList()));
|
|
|
|
|
|
+ qw.in("foreign_key_id",wplsToken.stream().filter(wp -> wp.getCompanyId().equals(companys)).map(wp -> wp.getId()).collect(Collectors.toList()));
|
|
|
|
+ qw1.in("foreign_key_id",wplsToken.stream().filter(wp -> wp.getCompanyId().equals(companys)).map(wp -> wp.getId()).collect(Collectors.toList()));
|
|
}
|
|
}
|
|
qw.eq("to_char(record_date,'yyyy-MM')",yearmonth);
|
|
qw.eq("to_char(record_date,'yyyy-MM')",yearmonth);
|
|
qw1.eq("to_char(record_date,'yyyy-MM')",yearmonth);
|
|
qw1.eq("to_char(record_date,'yyyy-MM')",yearmonth);
|
|
@@ -631,6 +646,8 @@ public class SpecificService {
|
|
*/
|
|
*/
|
|
private void setCenterDnInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> yearresultList) {
|
|
private void setCenterDnInfo(String companys,String type,String yearmonth, List<SpecificCenterVo> yearresultList) {
|
|
|
|
|
|
|
|
+ HttpServletRequest request = ((ServletRequestAttributes) (RequestContextHolder.currentRequestAttributes())).getRequest();
|
|
|
|
+ List<ProBasicPowerstation> wplsToken = tokenService.getWpls(request);
|
|
|
|
|
|
QueryWrapper<ProEconPowerstationInfoDay4> qw = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay4> qw = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay7> qw1 = new QueryWrapper<>();
|
|
QueryWrapper<ProEconPowerstationInfoDay7> qw1 = new QueryWrapper<>();
|
|
@@ -646,8 +663,8 @@ public class SpecificService {
|
|
qw1.like("foreign_key_id","_GDC_");
|
|
qw1.like("foreign_key_id","_GDC_");
|
|
}
|
|
}
|
|
if (companys.endsWith("ZGS")){
|
|
if (companys.endsWith("ZGS")){
|
|
- qw.in("foreign_key_id",CacheContext.wpls.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
- qw1.in("foreign_key_id",CacheContext.wpls.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
|
|
+ qw.in("foreign_key_id",wplsToken.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
|
|
+ qw1.in("foreign_key_id",wplsToken.stream().filter(wp->wp.getCompanyId().equals(companys)).map(wp->wp.getId()).collect(Collectors.toList()));
|
|
}
|
|
}
|
|
qw.eq("to_char(record_date,'yyyy')",yearmonth.split("-")[0]);
|
|
qw.eq("to_char(record_date,'yyyy')",yearmonth.split("-")[0]);
|
|
qw1.eq("to_char(record_date,'yyyy')",yearmonth.split("-")[0]);
|
|
qw1.eq("to_char(record_date,'yyyy')",yearmonth.split("-")[0]);
|