| 
					
				 | 
			
			
				@@ -146,9 +146,11 @@ let rptSignatureHelper = { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         for (const page of pageRst.items) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (page.signature_cells) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 for (const sCell of page.signature_cells) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    if (singatureNameArr.indexOf(sCell.signature_name) < 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                        signature_cells.push(sCell); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                        singatureNameArr.push(sCell.signature_name); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    if (sCell.signature_name !== null && sCell.signature_name !== undefined && sCell.signature_name !== 'dummy_pic') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                        if (singatureNameArr.indexOf(sCell.signature_name) < 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                            signature_cells.push(sCell); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                            singatureNameArr.push(sCell.signature_name); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             } 
			 |