Commit 82103847a935b6c232682a02368725360ee44422

Authored by 张志伟
1 parent 9f902e97

:fire: feat(*): 调整查询

- 调整线索查询
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/PoolBizService.java
... ... @@ -74,12 +74,11 @@ public class PoolBizService {
74 74 page.setTotal(total);
75 75 list = pubCluePoolService.followList(queryVO);
76 76 } else {
77   - queryVO.setIgnoreChangeRole(Boolean.TRUE);
  77 + queryVO.setIgnoreChangeRole(Boolean.FALSE);
78 78 if (Boolean.TRUE.equals(queryVO.getClueDimension())) {
79 79 ignoreClueDimensionQuery(queryVO);
80 80 }
81 81  
82   -
83 82 final long total = clueTaskService.followListCount(queryVO);
84 83 if (total <= 0) {
85 84 return page;
... ...