Commit b3789c75 by 吴博

bug: [none] fixName

parent e5906fcc
...@@ -181,7 +181,7 @@ public class SpecialBookBizImpl implements SpecialBookBiz { ...@@ -181,7 +181,7 @@ public class SpecialBookBizImpl implements SpecialBookBiz {
for (SpecialBookDTO specialBookDTO : specialBookDTOS) { for (SpecialBookDTO specialBookDTO : specialBookDTOS) {
if (null != specialBookDTO.getAdviserId() && null != adviserNameMap.get(specialBookDTO.getAdviserId())) { if (null != specialBookDTO.getAdviserId() && null != adviserNameMap.get(specialBookDTO.getAdviserId())) {
specialBookDTO.setAdviserName(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())) { if (null != specialBookDTO.getChannelId() && null != channelNameMap.get(specialBookDTO.getChannelId())) {
specialBookDTO.setChannelName(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