| | |
| | | return map; |
| | | } |
| | | |
| | | public String getPhone(ComEvent comEvent){ |
| | | public String getPhone(ComEvent comEvent) |
| | | { |
| | | if(comEvent==null) |
| | | { |
| | | return ""; |
| | | } |
| | | if (isNull(comEvent.getRequestUserCommunity())){ |
| | | ComSanshuoIndustryCenter sanshuoIndustryCenter=comSanShuoIndustryCenterService.getById(comEvent.getCenterId()); |
| | | if(sanshuoIndustryCenter==null) |
| | | { |
| | | return null; |
| | | return ""; |
| | | } |
| | | else |
| | | { |
| | |
| | | { |
| | | String contactsPhone = comActDO.getContactsPhone(); |
| | | if (isNull(contactsPhone)){ |
| | | return null; |
| | | return ""; |
| | | } |
| | | else |
| | | { |
| | | return contactsPhone; |
| | | } |
| | | } |
| | | return null; |
| | | return ""; |
| | | } |
| | | } |
| | | |