|
|
|
@ -51,7 +51,7 @@ public class ReportController {
|
|
|
|
|
if (CollectionUtil.isNotEmpty(reportPage.getRecords())){ |
|
|
|
|
reportPage.getRecords().stream().forEach(e -> { |
|
|
|
|
e.setFilePath(fileUtil.getUrlByInnerPath(e.getFilePath())); |
|
|
|
|
e.setReportType(ReportTypeEnum.getName(e.getReportType())); |
|
|
|
|
e.setReportTypeName(ReportTypeEnum.getName(e.getReportType())); |
|
|
|
|
e.setStatusName(ReportStatusEnum.getName(e.getStatusCd())); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -71,7 +71,8 @@ public class ReportController {
|
|
|
|
|
if(report == null ){ |
|
|
|
|
return R.failed("id正确"); |
|
|
|
|
} |
|
|
|
|
report.setReportType(ReportTypeEnum.getName(report.getReportType())); |
|
|
|
|
report.setFilePath(fileUtil.getUrlByInnerPath(report.getFilePath())); |
|
|
|
|
report.setReportTypeName(ReportTypeEnum.getName(report.getReportType())); |
|
|
|
|
return R.ok(report); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -97,7 +98,7 @@ public class ReportController {
|
|
|
|
|
if (report.getId() == null){ |
|
|
|
|
return R.failed("id不能为空"); |
|
|
|
|
} |
|
|
|
|
fileUtil.getInnerPath(report.getFilePath()); |
|
|
|
|
report.setFilePath(fileUtil.getInnerPath(report.getFilePath())); |
|
|
|
|
return R.ok(reportService.updateById(report)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|