|
@@ -72,7 +72,7 @@ public class SingleAnalysisService {
|
|
|
if(StringUtils.notEmp(wpId))
|
|
|
{
|
|
|
QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
.eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
iostls= proEconEquipmentInfoDay1Service.list(queryWrapper);
|
|
|
// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
@@ -83,7 +83,7 @@ public class SingleAnalysisService {
|
|
|
}else
|
|
|
{
|
|
|
QueryWrapper<ProEconEquipmentInfoDay1> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
.eq("company_id",cmId);
|
|
|
iostls= proEconEquipmentInfoDay1Service.list(queryWrapper);
|
|
|
// .stream().filter(i-> i.getCompanyId().equals(cmId)
|
|
@@ -104,7 +104,7 @@ public class SingleAnalysisService {
|
|
|
if(StringUtils.notEmp(wpId))
|
|
|
{
|
|
|
QueryWrapper<ProEconEquipmentInfoDay2> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("types",type).eq("record_date",recordDate)
|
|
|
+ queryWrapper.eq("record_date",recordDate)
|
|
|
.eq("company_id",cmId).eq("windpowerstation_id",wpId);
|
|
|
iostls= proEconEquipmentInfoDay2Service.list(queryWrapper);
|
|
|
// .stream().filter(i->i.getWindpowerstationId().equals(wpId)
|
|
@@ -253,7 +253,7 @@ public class SingleAnalysisService {
|
|
|
|
|
|
List<SingleAnalysisVo> vos = new ArrayList<>();
|
|
|
|
|
|
- if (StringUtils.notEmp(wpId) && StringUtils.notEmp(recordDate) ) {
|
|
|
+ if (StringUtils.notEmp(cmId) && StringUtils.notEmp(recordDate) ) {
|
|
|
|
|
|
Map<String, ProEconInOrOutSpeedTotal> iostmap=queryInOrOutSpeedTotal(cmId,type,wpId, recordDate);
|
|
|
Map<String, ProEconEquipmentInfoDay1> eqday1map = queryEquipmentInfoDay1(cmId,type,wpId, recordDate);
|
|
@@ -261,14 +261,28 @@ public class SingleAnalysisService {
|
|
|
Map<String, ProEconPowerstationInfoDay5> pwday5map = queryPowerstationInfoDay5(cmId, recordDate);
|
|
|
Map<String, ProEconEquipmentInfoDay4> eqday4map = queryEquipmentInfoDay4(cmId,type,wpId, recordDate);
|
|
|
|
|
|
+ List<ProBasicEquipment> wtls =new ArrayList<>();
|
|
|
+ if(StringUtils.isNotEmpty(wpId))
|
|
|
+ {
|
|
|
+ if (CacheContext.wpwtmap.containsKey(cmId)) {
|
|
|
+ wtls = CacheContext.wpwtmap.get(wpId);
|
|
|
+ }
|
|
|
+
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ if (CacheContext.cmwtlsmap.containsKey(cmId)) {
|
|
|
+ wtls = CacheContext.cmwtlsmap.get(cmId);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- if (CacheContext.wpwtmap.containsKey(wpId)) {
|
|
|
- List<ProBasicEquipment> wtls = CacheContext.wpwtmap.get(wpId);
|
|
|
+ //if (CacheContext.cmwtlsmap.containsKey(wpId)) {
|
|
|
+// List<ProBasicEquipment> wtls = CacheContext.cmwtlsmap.get(wpId);
|
|
|
|
|
|
for (ProBasicEquipment wt : wtls) {
|
|
|
SingleAnalysisVo vo = new SingleAnalysisVo();
|
|
|
vo.setWindPowerStationId(wt.getWindpowerstationId());
|
|
|
vo.setWindturbineName(wt.getName());
|
|
|
+ vo.setWtcode(wt.getAname());
|
|
|
if (CacheContext.wpmap.containsKey(wt.getWindpowerstationId())) {
|
|
|
ProBasicPowerstation wp = CacheContext.wpmap.get(wt.getWindpowerstationId());
|
|
|
vo.setWindPowerStationName(wp.getName());
|
|
@@ -388,7 +402,7 @@ public class SingleAnalysisService {
|
|
|
vos.add(vo);
|
|
|
}
|
|
|
|
|
|
- }
|
|
|
+ //}
|
|
|
|
|
|
|
|
|
if (null != vos && !vos.isEmpty()) {
|