Commit 2c7f0154 authored by zhoushiguang's avatar zhoushiguang
parents 3bc474ba 8bf5ad86
......@@ -131,6 +131,9 @@ public class RunningPlanServiceImpl implements RunningPlanService {
execListElement.setWeek(week);
execListElement.setSpecialDateList(specialDateList);
BaseCrossPlanPO baseCrossPlanPO = baseCrossPlanMapper.selectById(planId);
if (ObjectUtil.isEmpty(baseCrossPlanPO)){
continue;
}
execListElement.setPlanName(baseCrossPlanPO.getName());
execListElement.setPlanId(baseCrossPlanPO.getId());
execList.add(execListElement);
......
......@@ -45,7 +45,7 @@ public class ScheduleUtil {
if (aChar == 49) {
if (type == 3) {
if (i == 0){
//星期日是0
//星期日是7
str.append(7).append(",");
}else {
str.append(i).append(",");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment