|
@@ -5614,8 +5614,10 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, Report> impleme
|
|
|
return msg;
|
|
|
}
|
|
|
}
|
|
|
- String stringCellValue = row.getCell(7)==null?null:row.getCell(7).getStringCellValue();
|
|
|
- String workContent = row.getCell(8)==null?null:row.getCell(8).getStringCellValue();
|
|
|
+ //新增阶段
|
|
|
+ String stageName = row.getCell(7)==null?null:row.getCell(7).getStringCellValue();
|
|
|
+ String stringCellValue = row.getCell(8)==null?null:row.getCell(8).getStringCellValue();
|
|
|
+ String workContent = row.getCell(9)==null?null:row.getCell(9).getStringCellValue();
|
|
|
double time = 0;
|
|
|
if (!StringUtils.isEmpty(stringCellValue)) {
|
|
|
time = Double.parseDouble(stringCellValue);
|
|
@@ -5630,6 +5632,7 @@ public class ReportServiceImpl extends ServiceImpl<ReportMapper, Report> impleme
|
|
|
report.setGroupId(groupId);
|
|
|
report.setReportTimeType(1);
|
|
|
report.setWorkingTime(time);
|
|
|
+ report.setStage(stageName);
|
|
|
report.setContent(workContent);
|
|
|
report.setMultiWorktime(timeType.getMultiWorktime());
|
|
|
// report.setFillUserid(user.getId()); 导入时,处理为自己填写的
|