|
@@ -2143,9 +2143,7 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
if(contains){
|
|
|
continue;
|
|
|
}
|
|
|
-
|
|
|
PdfPCell pdfPCell = new PdfPCell(new Paragraph(strings[j],defaultFont(font)));
|
|
|
- pdfPCell.setRowspan(num);
|
|
|
|
|
|
for(CombineCoordVo v : combineCoordList){
|
|
|
if(coord.equals(v.getCoord())){
|
|
@@ -2155,9 +2153,12 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
}
|
|
|
}
|
|
|
if(b){
|
|
|
- pdfPTable2.addCell(pdfPCell);
|
|
|
+ pdfPCell.setRowspan(num);
|
|
|
}
|
|
|
|
|
|
+ pdfPTable2.addCell(pdfPCell);
|
|
|
+
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|