|
@@ -735,7 +735,7 @@ public class CourseScheduleTeacherSalaryServiceImpl extends BaseServiceImpl<Long
|
|
|
boolean isCallName = false;
|
|
|
List<StudentAttendance> courseStudentAttendance = courseStudentAttendanceMap.get(courseScheduleTeacherSalary.getCourseScheduleId());
|
|
|
if(!CollectionUtils.isEmpty(courseStudentAttendance)){
|
|
|
- long csaNum = courseStudentAttendance.stream().filter(csa -> DateUtil.hoursBetween(csa.getSignInTime(), courseSchedule.getStartClassTime()) < 4).count();
|
|
|
+ long csaNum = courseStudentAttendance.stream().filter(csa -> DateUtil.hoursBetween(csa.getCreateTime(), courseSchedule.getStartClassTime()) < 4).count();
|
|
|
if(csaNum>0){
|
|
|
isCallName = true;
|
|
|
}
|