| 
						
						
							
								
							
						
						
					 | 
				
				 | 
				
					@ -765,7 +765,19 @@ public class CustomerStaffServiceImpl extends BaseServiceImpl<CustomerStaffDao, | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
						 */ | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
						@Override | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
						public BasicInfoResultDTO getStaffBasicInfo(StaffBasicInfoFromDTO fromDTO) { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							return baseDao.getStaffBasicInfo(fromDTO); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							BasicInfoResultDTO result = baseDao.getStaffBasicInfo(fromDTO); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							//获取工作人员所属客户名
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							CustomerDTO dto = new CustomerDTO(); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							dto.setId(result.getCustomerId()); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							Result<CustomerDTO> customerResult = operCrmOpenFeignClient.getCustomerInfo(dto); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							if (!customerResult.success()) { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
								throw new RenException(customerResult.getCode(), customerResult.getMsg()); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							if (null != customerResult.getData()) { | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
								result.setCustomerName(customerResult.getData().getCustomerName()); | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
							return result; | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
						} | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
					
 | 
				
			
			
		
	
		
			
				
					 | 
					 | 
				
				 | 
				
						@Override | 
				
			
			
		
	
	
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
				
				 | 
				
					
  |