|
|
@@ -106,8 +106,8 @@ public class ReportsController extends BladeController {
|
|
|
text.append("find_in_set('").append(arrPost[i]).append("',authorized_team_id) or ");
|
|
|
}
|
|
|
}
|
|
|
- text.append("find_in_set('").append(AuthUtil.getUserId()).append("',authorized_users_id)) ");
|
|
|
- text.append("and not find_in_set('").append(AuthUtil.getUserId()).append("',exclude_users_id)");
|
|
|
+ text.append("find_in_set('").append(AuthUtil.getUserId()).append("',authorized_users_id) or ");
|
|
|
+ text.append(" not find_in_set('").append(AuthUtil.getUserId()).append("',exclude_users_id))");
|
|
|
lambdaQueryWrapper.apply(text.toString());
|
|
|
}
|
|
|
IPage<Reports> pages = reportsService.page(Condition.getPage(query), lambdaQueryWrapper);
|