|
@@ -981,30 +981,24 @@ public class ProjectListService {
|
|
}else{
|
|
}else{
|
|
data.put("sealType","");
|
|
data.put("sealType","");
|
|
}
|
|
}
|
|
- //评估报告
|
|
|
|
- if(StringUtils.isNotBlank(issuedById.getAssessmentReport())){
|
|
|
|
- data.put("assessmentReport",issuedById.getAssessmentReport());
|
|
|
|
- }else{
|
|
|
|
- data.put("assessmentReport","");
|
|
|
|
- }
|
|
|
|
- //评估说明
|
|
|
|
- if(StringUtils.isNotBlank(issuedById.getAssessmentExplain())){
|
|
|
|
- data.put("assessmentExplain",issuedById.getAssessmentExplain());
|
|
|
|
- }else{
|
|
|
|
- data.put("assessmentExplain","");
|
|
|
|
- }
|
|
|
|
- //评估明细表
|
|
|
|
- if(StringUtils.isNotBlank(issuedById.getAssessmentDetail())){
|
|
|
|
- data.put("assessmentDetail",issuedById.getAssessmentDetail());
|
|
|
|
- }else{
|
|
|
|
- data.put("assessmentDetail","");
|
|
|
|
- }
|
|
|
|
- //咨询报告
|
|
|
|
- if(StringUtils.isNotBlank(issuedById.getConsultingReport())){
|
|
|
|
- data.put("consultingReport",issuedById.getConsultingReport());
|
|
|
|
- }else{
|
|
|
|
- data.put("consultingReport","");
|
|
|
|
- }
|
|
|
|
|
|
+ String reportCopiesDetail = "";
|
|
|
|
+ // 咨询报告 份
|
|
|
|
+ if(StringUtils.isNotBlank(issuedById.getConsultingReport())){
|
|
|
|
+ reportCopiesDetail = reportCopiesDetail + "咨询报告" + issuedById.getConsultingReport() + "份; ";
|
|
|
|
+ }
|
|
|
|
+ // 评估报告 份
|
|
|
|
+ if(StringUtils.isNotBlank(issuedById.getAssessmentReport())){
|
|
|
|
+ reportCopiesDetail = reportCopiesDetail + "评估报告" + issuedById.getAssessmentReport() + "份; ";
|
|
|
|
+ }
|
|
|
|
+ // 评估说明 份
|
|
|
|
+ if(StringUtils.isNotBlank(issuedById.getAssessmentExplain())){
|
|
|
|
+ reportCopiesDetail = reportCopiesDetail + "评估说明" + issuedById.getAssessmentExplain() + "份; ";
|
|
|
|
+ }
|
|
|
|
+ // 评估明细表 份
|
|
|
|
+ if(StringUtils.isNotBlank(issuedById.getAssessmentDetail())){
|
|
|
|
+ reportCopiesDetail = reportCopiesDetail + "评估明细表" + issuedById.getAssessmentDetail() + "份; ";
|
|
|
|
+ }
|
|
|
|
+ data.put("reportCopiesDetail",reportCopiesDetail);
|
|
}else{
|
|
}else{
|
|
data.put("standingBook","");
|
|
data.put("standingBook","");
|
|
data.put("electronicsArchive","");
|
|
data.put("electronicsArchive","");
|