Browse Source

fix:服务指标明细课后作业数量按周数分开

Joburgess 4 years ago
parent
commit
de89b0cc2a

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

@@ -207,6 +207,9 @@ public class StudentExtracurricularExercisesSituationServiceImpl extends BaseSer
 				List<StudentExtracurricularExercisesSituation> tss = teacherServeMap.get(teacherServeDto.getTeacherId());
 				Set<Long> courseIds = new HashSet<>();
 				for (StudentExtracurricularExercisesSituation ts : tss) {
+					if(teacherServeDto.getMonday().compareTo(ts.getMonday())!=0){
+						continue;
+					}
 					if(StringUtils.isBlank(ts.getCourseIds())){
 						continue;
 					}