Commit 8abc91bf by 吴博

Merge branch 'fixbug/fixName' into 'master'

bug: [none] fixName

See merge request rays/pcloud-book!1026
parents e5906fcc b3789c75
......@@ -181,7 +181,7 @@ public class SpecialBookBizImpl implements SpecialBookBiz {
for (SpecialBookDTO specialBookDTO : specialBookDTOS) {
if (null != specialBookDTO.getAdviserId() && null != adviserNameMap.get(specialBookDTO.getAdviserId())) {
specialBookDTO.setAdviserName(adviserNameMap.get(specialBookDTO.getAdviserId()));
specialBookDTO.setAgentName(null != agentMap.get(specialBookDTO.getAgentId()) ? agentMap.get(specialBookDTO.getAgentId()).getName() : "");
specialBookDTO.setAgentName(null != agentMap.get(specialBookDTO.getAdviserId()) ? agentMap.get(specialBookDTO.getAdviserId()).getName() : "");
}
if (null != specialBookDTO.getChannelId() && null != channelNameMap.get(specialBookDTO.getChannelId())) {
specialBookDTO.setChannelName(channelNameMap.get(specialBookDTO.getChannelId()));
......
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