|
|
@@ -295,7 +295,7 @@ public class GenerateReportWordService { |
|
|
|
str = "问题图片"; |
|
|
|
cell.add(new Paragraph(str, font)); |
|
|
|
} else if (j == 6) { |
|
|
|
cell = this.getImageCell(inspectionFile.getFileThumbnail());; |
|
|
|
cell = this.getImageCell(CommonConfig.imageURL + inspectionFile.getFileThumbnail());; |
|
|
|
} |
|
|
|
table.addCell(cell); |
|
|
|
} |
|
|
@@ -349,7 +349,7 @@ public class GenerateReportWordService { |
|
|
|
} else { |
|
|
|
imageTileCell = this.getCell(font, "处理图片" + (i+1)); |
|
|
|
} |
|
|
|
imageUrl = list.get(i); |
|
|
|
imageUrl = CommonConfig.imageURL + list.get(i); |
|
|
|
Cell imageCell = this.getImageCell(imageUrl); |
|
|
|
table.addCell(imageTileCell); |
|
|
|
table.addCell(imageCell); |