|
@@ -111,8 +111,7 @@ public class ReportOutlineServiceImpl extends ServiceImpl<ReportOutlineMapper, R
|
|
|
|
|
|
/* 拼接报告的名称 */
|
|
|
// 根据报告类型判断报告所属是项目还是管理分区, 获取报告所属名称
|
|
|
- String reportTypeId = reportOutline.getReportTypeId();
|
|
|
- ReportType reportType = reportTypeService.queryReportTypeDetail(reportTypeId);
|
|
|
+ ReportType reportType = getReportType(reportOutline);
|
|
|
String belongName = "";
|
|
|
if (BelongTypeEnum.PROJECT.getType().equals(reportType.getBelongType())) {
|
|
|
ReportProjectVO reportProjectInfo = saasWebService.getReportProjectInfo(reportOutline.getBelong());
|
|
@@ -130,6 +129,39 @@ public class ReportOutlineServiceImpl extends ServiceImpl<ReportOutlineMapper, R
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 获取报告概要的报告类型
|
|
|
+ *
|
|
|
+ * @param reportOutline 报告概要
|
|
|
+ * @return 报告概要的报告类型
|
|
|
+ * @author lixing
|
|
|
+ * @version V1.0 2021/6/8 5:26 下午
|
|
|
+ */
|
|
|
+ private ReportType getReportType(ReportOutline reportOutline) {
|
|
|
+ String reportTypeId = reportOutline.getReportTypeId();
|
|
|
+ return reportTypeService.queryReportTypeDetail(reportTypeId);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getBelongType(ReportOutline reportOutline) {
|
|
|
+ ReportType reportType = getReportType(reportOutline);
|
|
|
+ if (reportType != null) {
|
|
|
+ return reportType.getBelongType();
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getBuildingType(ReportOutline reportOutline) {
|
|
|
+ ReportType reportType = getReportType(reportOutline);
|
|
|
+ if (reportType != null) {
|
|
|
+ return reportType.getBuildingType();
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
* 报告概要详情
|
|
|
*
|
|
|
* @param id 主键
|
|
@@ -326,10 +358,7 @@ public class ReportOutlineServiceImpl extends ServiceImpl<ReportOutlineMapper, R
|
|
|
|
|
|
@Override
|
|
|
public List<String> queryRelatedProjectIds(ReportOutline reportOutline) {
|
|
|
- String reportTypeId = reportOutline.getReportTypeId();
|
|
|
-
|
|
|
- ReportType reportType = reportTypeService.queryReportTypeDetail(reportTypeId);
|
|
|
- String belongType = reportType.getBelongType();
|
|
|
+ String belongType = getBelongType(reportOutline);
|
|
|
|
|
|
List<String> projectIds = new ArrayList<>();
|
|
|
if (BelongTypeEnum.PROJECT.getType().equals(belongType)) {
|
|
@@ -348,10 +377,7 @@ public class ReportOutlineServiceImpl extends ServiceImpl<ReportOutlineMapper, R
|
|
|
|
|
|
@Override
|
|
|
public List<SimpleProjectVO> queryRelatedProjects(ReportOutline reportOutline) {
|
|
|
- String reportTypeId = reportOutline.getReportTypeId();
|
|
|
-
|
|
|
- ReportType reportType = reportTypeService.queryReportTypeDetail(reportTypeId);
|
|
|
- String belongType = reportType.getBelongType();
|
|
|
+ String belongType = getBelongType(reportOutline);
|
|
|
|
|
|
List<SimpleProjectVO> projects = new ArrayList<>();
|
|
|
if (BelongTypeEnum.PROJECT.getType().equals(belongType)) {
|