|
@@ -78,7 +78,7 @@ public class StudentExtracurricularExercisesSituationServiceImpl extends BaseSer
|
|
|
List<StudentEduTeacherDto> studentEduTeachers = studentEduTeachersMap.get(exercisesSituationDto.getStudentId());
|
|
|
if(!CollectionUtils.isEmpty(studentEduTeachers)){
|
|
|
List<StudentEduTeacherDto> t1 = studentEduTeachers.stream().filter(set -> set.getGroupType().equals(GroupType.VIP.getCode())||set.getGroupType().equals(GroupType.PRACTICE.getCode())).collect(Collectors.toList());
|
|
|
- if(CollectionUtils.isEmpty(t1)){
|
|
|
+ if(!CollectionUtils.isEmpty(t1)){
|
|
|
for (StudentEduTeacherDto studentEduTeacherDto : t1) {
|
|
|
if(StringUtils.isNoneBlank(studentEduTeacherDto.getEducationalTeacherName())){
|
|
|
exercisesSituationDto.setEducationalTeacherId(studentEduTeachers.get(0).getEducationalTeacherId());
|
|
@@ -91,7 +91,7 @@ public class StudentExtracurricularExercisesSituationServiceImpl extends BaseSer
|
|
|
continue;
|
|
|
}
|
|
|
List<StudentEduTeacherDto> t2 = studentEduTeachers.stream().filter(set -> set.getGroupType().equals(GroupType.MUSIC.getCode())).collect(Collectors.toList());
|
|
|
- if(CollectionUtils.isEmpty(t2)){
|
|
|
+ if(!CollectionUtils.isEmpty(t2)){
|
|
|
for (StudentEduTeacherDto studentEduTeacherDto : t2) {
|
|
|
if(StringUtils.isNoneBlank(studentEduTeacherDto.getEducationalTeacherName())){
|
|
|
exercisesSituationDto.setEducationalTeacherId(studentEduTeachers.get(0).getEducationalTeacherId());
|