增加角色相关,进件相关修改,后台增加用户默认通道,前台默认通道

This commit is contained in:
liuyingfang
2023-06-28 10:05:28 +08:00
parent e26d85f4c9
commit fe7e9f2074
11 changed files with 183 additions and 9 deletions

View File

@@ -620,11 +620,14 @@ public class PromoterController {
request.setAttribute("listMerchantRejectDesc", listMerchantRejectDesc);
UserApp appInfo = uaService.queryUserAppJoinById(userId);
QueryWrapper<Account> qWrapper = new QueryWrapper<Account>()
.eq("userId", userId).eq("valid", 1);
Account accountOne = accountService.getOne(qWrapper);
request.setAttribute("ppStatus", appInfo.getPpStatus());
request.setAttribute("ppThirdStatus", appInfo.getPpThirdStatus());
request.setAttribute("userId", userId);
request.setAttribute("mbi", mbi);
request.setAttribute("account", accountOne == null?"null":accountOne.getChannelType());
return "promoter/channelAuditInfo";
}