| | |
| | | */ |
| | | public static PdfPTable setTable(Font headFont, Font textFont, String[] title, List<TjPdfVO> list) { |
| | | //四列 |
| | | PdfPTable table = createTable(new float[]{120, 120, 120, 120}); |
| | | PdfPTable table = createTable(new float[]{120, 120, 120}); |
| | | //画标题 |
| | | for (String head : title) { |
| | | table.addCell(createCell(head, headFont)); |
| | |
| | | table.addCell(createCell(tjPdfVO.getProName(), textFont)); |
| | | table.addCell(createCell(tjPdfVO.getProResult(), textFont)); |
| | | table.addCell(createCell(tjPdfVO.getCompany(), textFont)); |
| | | table.addCell(createCell(tjPdfVO.getStandardValue(), textFont)); |
| | | // table.addCell(createCell(tjPdfVO.getStandardValue(), textFont)); |
| | | } |
| | | return table; |
| | | } |