|
|
|
@ -1327,7 +1327,7 @@ public class AmsReportServiceImpl implements AmsReportService { |
|
|
|
params.put("yjzb", exportInfos.get(i).getComboParentName()); |
|
|
|
params.put("ejzb", exportInfos.get(i).getComboName()); |
|
|
|
if (exportInfos.get(i).getNeedPlan() != null && exportInfos.get(i).getNeedPlan() == 1) { |
|
|
|
TextRenderData textStr = Texts.of(exportInfos.get(i).getComboParentName() + "/" + exportInfos.get(i).getComboName()).bold().color("FF0000").create(); |
|
|
|
TextRenderData textStr = Texts.of(StrUtil.isEmpty(exportInfos.get(i).getComboParentName()) ? "" : exportInfos.get(i).getComboParentName() + "/" + exportInfos.get(i).getComboName()).bold().color("FF0000").create(); |
|
|
|
TextRenderData textName = Texts.of(scores.get(i).getName()).bold().color("FF0000").create(); |
|
|
|
TextRenderData textScore = Texts.of(scores.get(i).getScore() == null ? "" : scores.get(i).getScore() + "").bold().color("FF0000").create(); |
|
|
|
TextRenderData textImpression = Texts.of(StrUtil.isEmpty(exportInfos.get(i).getImpression()) ? exportInfos.get(i).getResult() : exportInfos.get(i).getImpression()).bold().color("FF0000").create(); |
|
|
|
@ -1435,7 +1435,7 @@ public class AmsReportServiceImpl implements AmsReportService { |
|
|
|
if (ObjectUtil.isNotNull(report) && StrUtil.isNotBlank(report.getPositiveUrl())) { |
|
|
|
AmsReportVo.Result result = new AmsReportVo.Result(); |
|
|
|
result.setPath(report.getPositiveUrl()); |
|
|
|
return result; |
|
|
|
// return result;
|
|
|
|
} |
|
|
|
|
|
|
|
RmsDto.QueryDetail queryDetail = new RmsDto.QueryDetail(); |
|
|
|
|