|
@@ -758,6 +758,8 @@ public class PlanServiceImpl extends ServiceImpl<PlanMapper, Plan> implements Pl
|
|
|
}
|
|
|
if(startDateCell!=null&&!StringUtils.isEmpty(startDateCell.getDateCellValue())){
|
|
|
plan.setStartDate(LocalDate.parse(sdf.format(startDateCell.getDateCellValue()),df));
|
|
|
+ }else {
|
|
|
+ plan.setStartDate(LocalDate.now());
|
|
|
}
|
|
|
if(endDateCell!=null&&!StringUtils.isEmpty(endDateCell.getDateCellValue())){
|
|
|
plan.setEndDate(LocalDate.parse(sdf.format(endDateCell.getDateCellValue()),df));
|