|
@@ -917,7 +917,7 @@ public class PlanServiceImpl extends ServiceImpl<PlanMapper, Plan> implements Pl
|
|
|
item.add(plan.getForemanName());
|
|
|
}
|
|
|
item.add(df.format(plan.getStartDate()));
|
|
|
- item.add(df.format(plan.getEndDate()));
|
|
|
+ item.add(plan.getEndDate()==null?"":df.format(plan.getEndDate()));
|
|
|
item.add(plan.getDescribtion()==null?"":plan.getDescribtion());
|
|
|
dataList.add(item);
|
|
|
}
|