Browse Source

Merge branch 'develop' of gitadmin/tuoheng_freeway into release

tags/v1.0.0^2
wanjing 1 year ago
parent
commit
6f0a2b6589
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/report/export/GenerateReportWordService.java

+ 3
- 2
tuoheng-service/tuoheng-admin/src/main/java/com/tuoheng/admin/service/report/export/GenerateReportWordService.java View File

@@ -289,13 +289,14 @@ public class GenerateReportWordService {
str = "问题描述";
cell.add(new Paragraph(str, font));
} else if (j == 4) {
str = inspectionFile.getQuestionDesc();
str = inspectionFile.getQuestionName();
cell.add(new Paragraph(str, font));
} else if (j == 5) {
str = "问题图片";
cell.add(new Paragraph(str, font));
} else if (j == 6) {
cell = this.getImageCell(CommonConfig.imageURL + inspectionFile.getFileThumbnail());;
String imageUrl = inspectionFile.getFileOriginal();
cell = this.getImageCell(imageUrl);
}
table.addCell(cell);
}

Loading…
Cancel
Save