Commit 56146d95355448b14b0ea622336fa33707a44756
Merge branch 'pudong_jdk8' of http://61.169.120.202:8888/panzhaov5/bsth_control into pudong_jdk8
Showing
2 changed files
with
2 additions
and
3 deletions
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| ... | ... | @@ -3255,11 +3255,11 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf |
| 3255 | 3255 | if (nature.equals("0")) { |
| 3256 | 3256 | list.add(s); |
| 3257 | 3257 | }else if(nature.equals("1")){ |
| 3258 | - if(lineMap.get(s.getXlBm())){ | |
| 3258 | + if(lineMap.containsKey(s.getXlBm()) && lineMap.get(s.getXlBm())){ | |
| 3259 | 3259 | list.add(s); |
| 3260 | 3260 | } |
| 3261 | 3261 | }else{ |
| 3262 | - if(!lineMap.get(s.getXlBm())){ | |
| 3262 | + if(!lineMap.containsKey(s.getXlBm()) || !lineMap.get(s.getXlBm())){ | |
| 3263 | 3263 | list.add(s); |
| 3264 | 3264 | } |
| 3265 | 3265 | } | ... | ... |
src/main/resources/static/pages/forms/statement/statisticsDaily.html