|  |  | @ -137,17 +137,14 @@ public class PartyBranchManageServiceImpl implements PartyBranchManageService { | 
			
		
	
		
			
				
					|  |  |  |         CustomerPartyBranchDTO customerPartyBranch = customerPartyBranchResult.getData(); | 
			
		
	
		
			
				
					|  |  |  |         PartyMemberBaseInfoAddFormDTO partyMemberBaseInfoAddFormDTO = this.getPartyMemberBaseInfoAddFormDTO(formDTO, customerPartyBranch); | 
			
		
	
		
			
				
					|  |  |  |         Result<String> result = resiPartyMemberOpenFeignClient.addPartyMemberBaseInfo(partyMemberBaseInfoAddFormDTO); | 
			
		
	
		
			
				
					|  |  |  |         if (!result.success() || StringUtils.isBlank(result.getData())) { | 
			
		
	
		
			
				
					|  |  |  |             throw new RenException(result.getCode(), result.getMsg()); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |         //3、党支部总人数+1
 | 
			
		
	
		
			
				
					|  |  |  |         if (result.success() && StringUtils.isNotBlank(result.getData())) { | 
			
		
	
		
			
				
					|  |  |  |             //党支部总人数+1
 | 
			
		
	
		
			
				
					|  |  |  |             customerPartyBranch.setTotalPartyMember(customerPartyBranch.getTotalPartyMember() + 1); | 
			
		
	
		
			
				
					|  |  |  |             Result<String> updatePartyBranchResult = govOrgOpenFeignClient.updatePartyBranch(customerPartyBranch); | 
			
		
	
		
			
				
					|  |  |  |             if (updatePartyBranchResult.success()) { | 
			
		
	
		
			
				
					|  |  |  |                 logger.info(String.format("党支部(%s)总人数+1", formDTO.getPartyBranchId())); | 
			
		
	
		
			
				
					|  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |         } else { | 
			
		
	
		
			
				
					|  |  |  |             logger.error("添加党员异常"); | 
			
		
	
		
			
				
					|  |  |  |             throw new RenException(result.getCode()); | 
			
		
	
		
			
				
					|  |  |  |         customerPartyBranch.setTotalPartyMember(customerPartyBranch.getTotalPartyMember() + 1); | 
			
		
	
		
			
				
					|  |  |  |         Result<String> updatePartyBranchResult = govOrgOpenFeignClient.updatePartyBranch(customerPartyBranch); | 
			
		
	
		
			
				
					|  |  |  |         if (updatePartyBranchResult.success()) { | 
			
		
	
		
			
				
					|  |  |  |             logger.info(String.format("党支部(%s)总人数+1", formDTO.getPartyBranchId())); | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |         return result.getData(); | 
			
		
	
		
			
				
					|  |  |  |     } | 
			
		
	
	
		
			
				
					|  |  | 
 |