Explorar el Código

1、课表organ_id_字段初始化;
2、课表列表去除团体名和班级名,搜索更改为按团体编号/课程编号/课程名搜索
3、修复对外课程无部门编号
4、节假日获取方式调整
5、线上乐团课创建
6、服务指标添加教务老师编号

Joe hace 5 años
padre
commit
8626f5be4a

+ 2 - 2
mec-biz/src/main/java/com/ym/mec/biz/service/impl/StudentExtracurricularExercisesSituationServiceImpl.java

@@ -80,7 +80,7 @@ public class StudentExtracurricularExercisesSituationServiceImpl extends BaseSer
 					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)){
 						for (StudentEduTeacherDto studentEduTeacherDto : t1) {
-							if(StringUtils.isNoneBlank(studentEduTeacherDto.getEducationalTeacherName())){
+							if(StringUtils.isNotBlank(studentEduTeacherDto.getEducationalTeacherName())){
 								exercisesSituationDto.setEducationalTeacherId(studentEduTeachers.get(0).getEducationalTeacherId());
 								exercisesSituationDto.setEducationalTeacherName(studentEduTeachers.get(0).getEducationalTeacherName());
 								break;
@@ -93,7 +93,7 @@ public class StudentExtracurricularExercisesSituationServiceImpl extends BaseSer
 					List<StudentEduTeacherDto> t2 = studentEduTeachers.stream().filter(set -> set.getGroupType().equals(GroupType.MUSIC.getCode())).collect(Collectors.toList());
 					if(!CollectionUtils.isEmpty(t2)){
 						for (StudentEduTeacherDto studentEduTeacherDto : t2) {
-							if(StringUtils.isNoneBlank(studentEduTeacherDto.getEducationalTeacherName())){
+							if(StringUtils.isNotBlank(studentEduTeacherDto.getEducationalTeacherName())){
 								exercisesSituationDto.setEducationalTeacherId(studentEduTeachers.get(0).getEducationalTeacherId());
 								exercisesSituationDto.setEducationalTeacherName(studentEduTeachers.get(0).getEducationalTeacherName());
 								break;