|
|
@ -131,13 +131,17 @@ public class MyOrderController { |
|
|
|
UserAccount userAccount = platformTeamAccountMapper.selectAccountPlatform(order.getUserId()); |
|
|
|
UserAccount userAccount = platformTeamAccountMapper.selectAccountPlatform(order.getUserId()); |
|
|
|
List<UserAccount> userAccountList = platformTeamClassificationMapper.selectAccountList(userAccount.getAppOpenId()); |
|
|
|
List<UserAccount> userAccountList = platformTeamClassificationMapper.selectAccountList(userAccount.getAppOpenId()); |
|
|
|
for (UserAccount account : userAccountList) { |
|
|
|
for (UserAccount account : userAccountList) { |
|
|
|
|
|
|
|
if (account.getPhone()!=null){ |
|
|
|
|
|
|
|
orderShopDto.setPhone(account.getPhone()); |
|
|
|
|
|
|
|
} |
|
|
|
if ("7".equals(account.getPlatformId())){ |
|
|
|
if ("7".equals(account.getPlatformId())){ |
|
|
|
QueryWrapper<UserAuthenticationInformation> queryWrapper = new QueryWrapper<>(); |
|
|
|
QueryWrapper<UserAuthenticationInformation> queryWrapper = new QueryWrapper<>(); |
|
|
|
queryWrapper.eq("account_id", account.getId()); |
|
|
|
queryWrapper.eq("account_id", account.getId()); |
|
|
|
UserAuthenticationInformation userAuthenticationInformation = userAuthenticationInformationService.getOne(queryWrapper); |
|
|
|
UserAuthenticationInformation userAuthenticationInformation = userAuthenticationInformationService.getOne(queryWrapper); |
|
|
|
orderShopDto.setPhone(account.getPhone()); |
|
|
|
orderShopDto.setAuthentication("未认证"); |
|
|
|
orderShopDto.setPurchasingPerson(account.getAccount()); |
|
|
|
orderShopDto.setPurchasingPerson(account.getAccount()); |
|
|
|
if (userAuthenticationInformation!=null){ |
|
|
|
if (userAuthenticationInformation!=null){ |
|
|
|
|
|
|
|
orderShopDto.setAuthentication("已认证"); |
|
|
|
orderShopDto.setPurchasingPerson(userAuthenticationInformation.getRealName()); |
|
|
|
orderShopDto.setPurchasingPerson(userAuthenticationInformation.getRealName()); |
|
|
|
} |
|
|
|
} |
|
|
|
}else { |
|
|
|
}else { |
|
|
|