Explorar el Código

调度报表日期分布图默认值统一

xuxueli hace 6 años
padre
commit
92d5004411

+ 1 - 0
doc/XXL-JOB官方文档.md Ver fichero

1379
 
1379
 
1380
 ### 6.23 版本 v2.0.1 Release Notes[迭代中]
1380
 ### 6.23 版本 v2.0.1 Release Notes[迭代中]
1381
 - 1、左侧菜单折叠动画问题修复;
1381
 - 1、左侧菜单折叠动画问题修复;
1382
+- 2、调度报表日期分布图默认值统一;
1382
 
1383
 
1383
 
1384
 
1384
 ### TODO LIST
1385
 ### TODO LIST

+ 1 - 0
xxl-job-admin/src/main/java/com/xxl/job/admin/service/impl/XxlJobServiceImpl.java Ver fichero

345
 		} else {
345
 		} else {
346
             for (int i = 4; i > -1; i--) {
346
             for (int i = 4; i > -1; i--) {
347
                 triggerDayList.add(FastDateFormat.getInstance("yyyy-MM-dd").format(DateUtils.addDays(new Date(), -i)));
347
                 triggerDayList.add(FastDateFormat.getInstance("yyyy-MM-dd").format(DateUtils.addDays(new Date(), -i)));
348
+				triggerDayCountRunningList.add(0);
348
                 triggerDayCountSucList.add(0);
349
                 triggerDayCountSucList.add(0);
349
                 triggerDayCountFailList.add(0);
350
                 triggerDayCountFailList.add(0);
350
             }
351
             }