|  | @@ -292,8 +292,9 @@ public class PdfUtil {
 | 
	
		
			
				|  |  |          //第二行
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, "来访事由", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, data.get("reasons").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | -        createPDFCell(tableFont, table, "审批人", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | -        createPDFCell(tableFont, table, data.get("approveUser").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, "陪同人员", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, data.get("accompanyingPerson").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          //第三行
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, "来访单位", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, data.get("outOrgName").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
	
		
			
				|  | @@ -311,10 +312,16 @@ public class PdfUtil {
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, data.get("outTime").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          //第六行
 | 
	
		
			
				|  |  | -        createPDFCell(tableFont, table, "陪同人员", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | -        createPDFCell(tableFont, table, data.get("accompanyingPerson").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | -        createPDFCell(tableFont, table, "登记人员", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, "审批人", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, data.get("approveUser").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, "登记人", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, data.get("createBy").toString(), Element.ALIGN_MIDDLE, 2, 1);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        //第七行
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, "审批人签字", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | +        dealImageCell((List<String>) data.get("approveSign"), table, 1, 50, 40,2,1);
 | 
	
		
			
				|  |  | +        createPDFCell(tableFont, table, "登记人签字", Element.ALIGN_MIDDLE, 1, 1);
 | 
	
		
			
				|  |  | +        dealImageCell((List<String>) data.get("submitSign"), table, 1, 50, 40,2,1);
 | 
	
		
			
				|  |  |  //           /statics/2023/12/05/20231205183106A001.png
 | 
	
		
			
				|  |  |          //证件图片
 | 
	
		
			
				|  |  |          createPDFCell(tableFont, table, "证件图片", Element.ALIGN_MIDDLE, 1, 1);
 |