0cd11034 张雷

短信增加异常处理,会议通知BUG修改

1 个父辈 abeb3dbc
...@@ -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());
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!