|
|
|
@ -171,7 +171,8 @@ public class ImsDutyGroupServiceImpl extends BaseServiceImpl<ImsDutyGroupMapper,
|
|
|
|
|
} |
|
|
|
|
List<ImsDutyGroupPVO> imsDutyGroupPVOS = imsDutyGroupPService.listByGroupId(entity.getId()); |
|
|
|
|
if (CollectionUtil.isNotEmpty(imsDutyGroupPVOS)){ |
|
|
|
|
List<Long> userIds = imsDutyGroupPVOS.stream().map(ImsDutyGroupPVO::getPersonId).collect(Collectors.toList()); |
|
|
|
|
List<Long> userIds = imsDutyGroupPVOS.stream() |
|
|
|
|
.map(ImsDutyGroupPVO::getPersonId).filter(s->entity.getManagerId().equals(s)).collect(Collectors.toList()); |
|
|
|
|
String name=""; |
|
|
|
|
for (int i1 = 0; i1 < userIds.size(); i1++) { |
|
|
|
|
name=name+UserCache.getUser(userIds.get(i1)).getName(); |
|
|
|
|