|
|
@@ -995,10 +995,10 @@ public class InsOrdersServiceImpl extends ServiceImpl<InsOrdersMapper, InsOrders
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- Long total = 0l;
|
|
|
+ Long total = 0L;
|
|
|
Page<InsOrders> orderVoPage = new Page<>();
|
|
|
//注释逻辑给前台返回数据
|
|
|
- if ((agentUserIds != null && !agentUserIds.isEmpty()) || (agreeIds != null && !agreeIds.isEmpty())) {
|
|
|
+ if (agentUserIds != null && !agentUserIds.isEmpty() || !agreeIds.isEmpty()) {
|
|
|
orderVoPage = baseMapper.queryPageOrderByLinkType(page, orderQueryVo, agentUserIds, agreeIds, deptIds, flag,type);
|
|
|
total = baseMapper.queryPageOrderByLinkTypeCount(orderQueryVo, agentUserIds, agreeIds, deptIds, flag,type);
|
|
|
}
|