|
@@ -80,9 +80,9 @@ public class EconomicService {
|
|
|
|
|
|
BigDecimal num1 = new BigDecimal("100");
|
|
|
if (companyId.startsWith("JS_RGN") && type.equals("-1")) {
|
|
|
- qyls = station1ls.stream().filter(wp -> wp != null && "JS_RGN-1".contains(wp.getForeignKeyId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
+ qyls = station1ls.stream().filter(wp -> "JS_RGN-1".equals(wp.getForeignKeyId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
} else if (companyId.startsWith("JS_RGN") && type.equals("-2")) {
|
|
|
- qyls = station1ls.stream().filter(wp ->wp != null && "JS_RGN-2".contains(wp.getForeignKeyId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
+ qyls = station1ls.stream().filter(wp ->"JS_RGN-2".equals(wp.getForeignKeyId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
} else {
|
|
|
qyls = station1ls.stream().filter(wp -> wp.getForeignKeyId().contains(companyId) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
}
|
|
@@ -90,18 +90,20 @@ public class EconomicService {
|
|
|
|
|
|
//列表
|
|
|
if (companyId.startsWith("JS_RGN") && type.equals("-1")) {
|
|
|
- gsls = station1ls.stream().filter(wp -> wp != null && "JS_RGN-1".contains(wp.getRegionId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
+ gsls = station1ls.stream().filter(wp -> "JS_RGN-1".equals(wp.getRegionId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
trls = treels.stream().filter(wp -> wp.getId().endsWith("ZGS")).collect(Collectors.toList());
|
|
|
} else if (companyId.startsWith("JS_RGN") && type.equals("-2")) {
|
|
|
- gsls = station1ls.stream().filter(wp -> "JS_RGN-2".contains(wp.getRegionId()) && wp.getRecordDate().equals(date)).collect(Collectors.toList());
|
|
|
+ gsls = station1ls.stream()
|
|
|
+ .filter(wp ->"JS_RGN-2".equals(wp.getRegionId()) && date.equals(wp.getRecordDate()))
|
|
|
+ .collect(Collectors.toList());
|
|
|
trls = treels.stream().filter(wp -> wp != null && wp.getId().endsWith("ZGS")).collect(Collectors.toList());
|
|
|
|
|
|
//statype判断
|
|
|
} else if (companyId.startsWith("JS_RGN") && statype.equals("-1")) {
|
|
|
- gsls = station1ls.stream().filter(wp -> wp != null && "JS_RGN-1".contains(wp.getRegionId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
+ gsls = station1ls.stream().filter(wp -> "JS_RGN-1".equals(wp.getRegionId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
trls = treels.stream().filter(wp -> wp.getId().endsWith("STA")).collect(Collectors.toList());
|
|
|
} else if (companyId.startsWith("JS_RGN") && statype.equals("-2")) {
|
|
|
- gsls = station1ls.stream().filter(wp -> wp != null && "JS_RGN-2".contains(wp.getRegionId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
+ gsls = station1ls.stream().filter(wp -> "JS_RGN-2".equals(wp.getRegionId()) && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|
|
|
trls = treels.stream().filter(wp -> wp.getId().endsWith("STA")).collect(Collectors.toList());
|
|
|
} else {
|
|
|
gsls = station1ls.stream().filter(wp -> wp.getForeignKeyId().contains("STA") && date.equals(wp.getRecordDate())).collect(Collectors.toList());
|