Commit 8d6dc792 by 朱亚洁

平台端新增“书刊列表”菜单

parent 75346191
......@@ -3868,6 +3868,9 @@ public class BookAdviserBizImpl implements BookAdviserBiz {
paramAdviserIds = bookParam4PcloudVO.getAdviserIds();
} else if (null!=bookParam4PcloudVO.getAgentId()) {
paramAdviserIds = adviserConsr.getByAgentId(bookParam4PcloudVO.getAgentId());
if (CollUtil.isEmpty(paramAdviserIds)) {
return new PageBeanNew<>(currentPage,numPerPage,0,new ArrayList<>());
}
}
paramMap.put("adviserIds",paramAdviserIds);
paramMap.put("startTime",bookParam4PcloudVO.getStartTime());
......
......@@ -1532,7 +1532,7 @@
<if test="adviserIds != null and adviserIds.size>0">
AND ba.ADVISER_ID in
<foreach collection="adviserIds" index="index" separator="," item="item" close=")" open="(">
#{item}
${item}
</foreach>
</if>
ORDER BY
......
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