|
@@ -657,6 +657,8 @@ public class PlanServiceImpl extends ServiceImpl<PlanMapper, Plan> implements Pl
|
|
|
return msg;
|
|
|
}
|
|
|
if(startDateCell!=null&&!StringUtils.isEmpty(startDateCell.getDateCellValue())){
|
|
|
+ plan.setStartDate(LocalDate.parse(sdf.format(startDateCell.getDateCellValue()),df));
|
|
|
+ }else {
|
|
|
plan.setStartDate(planType==0?LocalDate.now():LocalDate.now().plusDays(1));
|
|
|
}
|
|
|
if(endDateCell!=null&&!StringUtils.isEmpty(endDateCell.getDateCellValue())){
|