|  |  | @ -477,9 +477,9 @@ public class PartyMemberConfirmServiceImpl implements PartyMemberConfirmService | 
			
		
	
		
			
				
					|  |  |  | 		Result<GridInfoResultDTO> gridInfoResult = govOrgFeignClient.queryGridInfo(partyMemberInfo.getGridId()); | 
			
		
	
		
			
				
					|  |  |  | 		String gridFullPath = ""; | 
			
		
	
		
			
				
					|  |  |  | 		if (gridInfoResult.success() && null != gridInfoResult.getData()) { | 
			
		
	
		
			
				
					|  |  |  | 			gridFullPath = String.format("%s-%s-%s", gridInfoResult.getData().getStreetName(), | 
			
		
	
		
			
				
					|  |  |  | 					gridInfoResult.getData().getCommnuityName(), | 
			
		
	
		
			
				
					|  |  |  | 					gridInfoResult.getData().getGridName()); | 
			
		
	
		
			
				
					|  |  |  | 			gridFullPath = String.format("%s-%s-%s", null == gridInfoResult.getData().getStreetName() ? "" : gridInfoResult.getData().getStreetName(), | 
			
		
	
		
			
				
					|  |  |  | 					null == gridInfoResult.getData().getCommnuityName() ? "" : gridInfoResult.getData().getCommnuityName(), | 
			
		
	
		
			
				
					|  |  |  | 					null == gridInfoResult.getData().getGridName() ? "" : gridInfoResult.getData().getGridName()); | 
			
		
	
		
			
				
					|  |  |  | 			gridFullPath = gridFullPath.replaceAll("--", "").trim(); | 
			
		
	
		
			
				
					|  |  |  | 		} | 
			
		
	
		
			
				
					|  |  |  | 		resultDTO.setGridFullPath(gridFullPath); | 
			
		
	
	
		
			
				
					|  |  | 
 |