|
@@ -123,7 +123,7 @@ public class CreatePrintPdfUtil {
|
|
|
Double lineHeightTimes = basicTemplate == null || basicTemplate.getLineHeightTimes() == null ? 1 : basicTemplate.getLineHeightTimes();
|
|
|
|
|
|
// 空格
|
|
|
- Paragraph blank = new Paragraph(" ");
|
|
|
+ Paragraph blank = new Paragraph(" ", PdfFillUtils.textFont12);
|
|
|
|
|
|
// 基础信息表格
|
|
|
PdfPTable basicTable = PdfFillUtils.createTable(6);
|
|
@@ -285,7 +285,7 @@ public class CreatePrintPdfUtil {
|
|
|
private void generatePackagePDF(Document document, PdfWriter pdfWriter, PdfPackageDto pdfPackageDto) {
|
|
|
try {
|
|
|
// 空格
|
|
|
- Paragraph blank = new Paragraph(" ");
|
|
|
+ Paragraph blank = new Paragraph(" ", PdfFillUtils.textFont12);
|
|
|
|
|
|
if (pdfPackageDto.getTag()) {
|
|
|
Paragraph para = new Paragraph();
|