短信增加异常处理,会议通知BUG修改
正在显示
1 个修改的文件
包含
1 行增加
和
1 行删除
... | @@ -128,7 +128,7 @@ public class LeaderInspectionRecordController { | ... | @@ -128,7 +128,7 @@ public class LeaderInspectionRecordController { |
128 | 128 | ||
129 | List<LeaderInspectionRecordStatisticsVO> monthDataList = null; | 129 | List<LeaderInspectionRecordStatisticsVO> monthDataList = null; |
130 | LeaderInspectionRecordStatisticsVO statisticsVO = null; | 130 | LeaderInspectionRecordStatisticsVO statisticsVO = null; |
131 | if( StringUtils.isEmpty(leaderInspectionRecord.getStartDate()) || StringUtils.isEmpty(leaderInspectionRecord.getEndDate())){ | 131 | if( StringUtils.isNotEmpty(leaderInspectionRecord.getStartDate()) && StringUtils.isNotEmpty(leaderInspectionRecord.getEndDate())){ |
132 | List<String> monthsDateList = DateUtil.getMonthsBetween(leaderInspectionRecord.getStartDate(), leaderInspectionRecord.getEndDate(),null); | 132 | List<String> monthsDateList = DateUtil.getMonthsBetween(leaderInspectionRecord.getStartDate(), leaderInspectionRecord.getEndDate(),null); |
133 | if(monthsDateList != null ){ | 133 | if(monthsDateList != null ){ |
134 | monthDataList = new ArrayList<>(monthsDateList.size()); | 134 | monthDataList = new ArrayList<>(monthsDateList.size()); | ... | ... |
-
请 注册 或 登录 后发表评论