|
@@ -133,7 +133,7 @@ public class UserCorpwxTimeController {
|
|
|
LocalDate localEnd = LocalDate.parse(endDate, standFormatter);
|
|
|
if (participationList.size() > 0) {
|
|
|
List<Integer> collect = participationList.stream().map(Participation::getProjectId).collect(Collectors.toList());
|
|
|
- List<Project> projectList = projectMapper.selectList(new QueryWrapper<Project>().in("id", collect).eq("company_id", user.getCompanyId()).orderByAsc("id"));
|
|
|
+ List<Project> projectList = projectMapper.selectList(new QueryWrapper<Project>().in("id", collect).eq("is_public", 0).eq("company_id", user.getCompanyId()).orderByAsc("id"));
|
|
|
|
|
|
names = projectList.stream().filter(p->{
|
|
|
if (p.getPlanStartDate() != null) {
|