Commit e78b5a58ed44f0870abcc3f4602a093b21096ffd

Authored by 娄高锋
1 parent 2f9b4e8f

1

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
... ... @@ -330,7 +330,6 @@
330 330 $get('/realSchedule/statisticsDailyTj',params,function(result){
331 331  
332 332 $.each(result, function(i, e){
333   - console.log(e);
334 333 if(e && e.startDate && e.startDate <= '2025-09-20'){
335 334 e.zt = 0; // 要求从更新后开始的数据才标红。
336 335 }
... ...