...
|
...
|
@@ -69,10 +69,12 @@ public class MessageFacade { |
|
|
List<String> uidList = Lists.newArrayList(ownerUid, applicantUid);
|
|
|
Map<Integer, ProfileInfoRsp> profileMap = userInfoProxyService.queryIcoAndMobile(uidList);
|
|
|
String ownerMobile = profileMap.get(Integer.parseInt(ownerUid)).getMobile();
|
|
|
String applicantName = profileMap.get(Integer.parseInt(applicantUid)).getNickname();
|
|
|
if(StringUtils.isEmpty(applicantName) || applicantName.startsWith("YOHO-")) {
|
|
|
applicantName = MobileHelper.coverMobile2(profileMap.get(Integer.parseInt(applicantUid)).getMobile());
|
|
|
}
|
|
|
// String applicantName = profileMap.get(Integer.parseInt(applicantUid)).getNickname();
|
|
|
// if(StringUtils.isEmpty(applicantName) || applicantName.startsWith("YOHO-")) {
|
|
|
// applicantName = MobileHelper.coverMobile2(profileMap.get(Integer.parseInt(applicantUid)).getMobile());
|
|
|
// }
|
|
|
|
|
|
String applicantName = MobileHelper.coverMobile2(profileMap.get(Integer.parseInt(applicantUid)).getMobile());
|
|
|
|
|
|
//商品信息
|
|
|
BuyerOrderGoods buyerOrderGoods = buyerOrderGoodsMapper.selectOnlyByOrderCode(orderCode);
|
...
|
...
|
|