Commit 96cd461c by 吴博

Merge branch 'feature/1003836' into 'master'

feat: [1003836] 落地页补充书籍信息

See merge request rays/pcloud-book!1032
parents 47f27dfa d63ae1fd
...@@ -5917,6 +5917,10 @@ public class BookGroupBizImpl implements BookGroupBiz { ...@@ -5917,6 +5917,10 @@ public class BookGroupBizImpl implements BookGroupBiz {
} }
} }
Map<String, Object> map = this.getBookBaseInfo4Applet(adviserId, channelId, bookId); Map<String, Object> map = this.getBookBaseInfo4Applet(adviserId, channelId, bookId);
Map<Long, AdviserBaseInfoDto> adviserInfoDtoMap = adviserConsr.getAdviserId2AdviserInfoDtoMap(Lists.newArrayList(adviserId));
if (MapUtils.isNotEmpty(adviserInfoDtoMap) && null != adviserInfoDtoMap.get(adviserId)) {
map.put("agentName", adviserInfoDtoMap.get(adviserId).getAgentName());
}
map.put("bookId", bookId); map.put("bookId", bookId);
map.put("adviserId", adviserId); map.put("adviserId", adviserId);
map.put("channelId", channelId); map.put("channelId", channelId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment