|
|
@@ -2,26 +2,31 @@ package com.xjrsoft.module.attendance.controller;
|
|
|
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
-import com.github.yulichang.toolkit.MPJWrappers;
|
|
|
import com.github.yulichang.wrapper.MPJLambdaWrapper;
|
|
|
import com.xjrsoft.common.model.result.RT;
|
|
|
+import com.xjrsoft.common.page.ConventPage;
|
|
|
+import com.xjrsoft.common.page.PageOutput;
|
|
|
import com.xjrsoft.module.attendance.dto.AttendanceStatisticDto;
|
|
|
import com.xjrsoft.module.attendance.service.IAttendanceRuleCategoryService;
|
|
|
import com.xjrsoft.module.attendance.vo.AttendanceRuleDetailsUserVo;
|
|
|
import com.xjrsoft.module.attendance.vo.ClassStatisticsVo;
|
|
|
-import com.xjrsoft.module.attendance.vo.TeacherStatisticsVo;
|
|
|
+import com.xjrsoft.module.attendance.vo.StudentStatisticsPageVo;
|
|
|
import com.xjrsoft.module.attendance.vo.VisitorInfoVo;
|
|
|
+import com.xjrsoft.module.base.entity.BaseClass;
|
|
|
import com.xjrsoft.module.base.service.IBaseClassService;
|
|
|
-import com.xjrsoft.module.concat.service.IXjrUserService;
|
|
|
+import com.xjrsoft.module.organization.entity.User;
|
|
|
+import com.xjrsoft.module.organization.service.IUserService;
|
|
|
import com.xjrsoft.module.outint.entity.StudentOutInRecord;
|
|
|
import com.xjrsoft.module.outint.service.IStudentOutInRecordService;
|
|
|
import com.xjrsoft.module.outint.service.ITeacherOutInRecordService;
|
|
|
import com.xjrsoft.module.outint.vo.StudentOutInRecordVo;
|
|
|
import com.xjrsoft.module.personnel.service.IReservationSchoolService;
|
|
|
-import com.xjrsoft.module.student.entity.BaseStudent;
|
|
|
+import com.xjrsoft.module.student.entity.BaseStudentSchoolRoll;
|
|
|
+import com.xjrsoft.module.student.entity.StudentLeave;
|
|
|
import com.xjrsoft.module.student.service.IStudentLeaveService;
|
|
|
-import com.xjrsoft.module.teacher.entity.XjrUser;
|
|
|
+import com.xjrsoft.module.system.entity.DictionaryDetail;
|
|
|
import com.xjrsoft.module.teacher.service.IWfTeacherleaveService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
@@ -39,6 +44,7 @@ import java.time.LocalDateTime;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
|
import java.time.temporal.TemporalAdjusters;
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@@ -55,7 +61,7 @@ import java.util.Map;
|
|
|
public class StudentStatisticsController {
|
|
|
|
|
|
|
|
|
- private final IXjrUserService xjrUserService;
|
|
|
+ private final IUserService xjrUserService;
|
|
|
private final ITeacherOutInRecordService teacherOutInRecordService;
|
|
|
private final IStudentOutInRecordService studentOutInRecordService;
|
|
|
private final IAttendanceRuleCategoryService ruleCategoryService;
|
|
|
@@ -67,7 +73,7 @@ public class StudentStatisticsController {
|
|
|
@GetMapping(value = "/class-statistics")
|
|
|
@ApiOperation(value="班级考勤统计")
|
|
|
@SaCheckPermission("statistics:detail")
|
|
|
- public RT<Page<ClassStatisticsVo>> teacherStatistics(@Valid AttendanceStatisticDto dto){
|
|
|
+ public RT<PageOutput<ClassStatisticsVo>> teacherStatistics(@Valid AttendanceStatisticDto dto){
|
|
|
Page<ClassStatisticsVo> attendancePage = classService.getAttendancePage(new Page<>(dto.getLimit(), dto.getSize()), dto);
|
|
|
List<Long> classIds = new ArrayList<>();
|
|
|
for (ClassStatisticsVo record : attendancePage.getRecords()) {
|
|
|
@@ -136,26 +142,33 @@ public class StudentStatisticsController {
|
|
|
record.setAttendanceRate(divide.doubleValue());
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- return RT.ok(attendancePage);
|
|
|
+ PageOutput<ClassStatisticsVo> pageOutput = ConventPage.getPageOutput(attendancePage, ClassStatisticsVo.class);
|
|
|
+ return RT.ok(pageOutput);
|
|
|
}
|
|
|
|
|
|
|
|
|
- @GetMapping(value = "/student-statistics")
|
|
|
- @ApiOperation(value="学生考勤统计")
|
|
|
+ @GetMapping(value = "/student-details")
|
|
|
+ @ApiOperation(value="学生考勤")
|
|
|
@SaCheckPermission("statistics:detail")
|
|
|
- public RT<TeacherStatisticsVo> studentStatistics(@Valid AttendanceStatisticDto dto){
|
|
|
- TeacherStatisticsVo statisticsVo = new TeacherStatisticsVo();
|
|
|
- //查询总人数
|
|
|
- MPJLambdaWrapper<XjrUser> queryWrapper = MPJWrappers.<XjrUser>lambdaJoin()
|
|
|
- .disableSubLogicDel()
|
|
|
- .innerJoin(BaseStudent.class, BaseStudent::getUserId, XjrUser::getId);
|
|
|
- long allCount = xjrUserService.count(queryWrapper);
|
|
|
- statisticsVo.setAllCount(allCount);
|
|
|
+ public RT<PageOutput<StudentStatisticsPageVo>> studentDetails(@Valid AttendanceStatisticDto dto){
|
|
|
+ MPJLambdaWrapper<User> queryUser = new MPJLambdaWrapper<>();
|
|
|
+ queryUser.disableSubLogicDel().distinct()
|
|
|
+ .selectAs(BaseClass::getName, StudentStatisticsPageVo::getClassName)
|
|
|
+ .select("t3.name", StudentStatisticsPageVo::getTeacherName)
|
|
|
+ .selectAs(User::getName, StudentStatisticsPageVo::getStudentName)
|
|
|
+ .selectAs(User::getId, StudentStatisticsPageVo::getUserId)
|
|
|
+ .selectAs(DictionaryDetail::getName, StudentStatisticsPageVo::getStduyStatusCn)
|
|
|
+ .innerJoin(BaseStudentSchoolRoll.class, BaseStudentSchoolRoll::getUserId, User::getId)
|
|
|
+ .innerJoin(BaseClass.class, BaseClass::getId, BaseStudentSchoolRoll::getClassId)
|
|
|
+ .leftJoin(User.class, User::getId, BaseClass::getTeacherId)
|
|
|
+ .leftJoin(DictionaryDetail.class, DictionaryDetail::getCode, BaseStudentSchoolRoll::getStduyStatus);
|
|
|
+ IPage<StudentStatisticsPageVo> voIPage = xjrUserService.selectJoinListPage(ConventPage.getPage(dto), StudentStatisticsPageVo.class, queryUser);
|
|
|
+
|
|
|
if(dto.getDate() != null && !"".equals(dto.getDate())){
|
|
|
DateTimeFormatter formatter = DateTimeFormatter.ISO_DATE;
|
|
|
LocalDate queryDate = LocalDate.parse(dto.getDate(), formatter);
|
|
|
LocalDateTime startTime, endTime;
|
|
|
+
|
|
|
if(dto.getTimePeriod() == 1){
|
|
|
startTime = queryDate.atTime(9, 0, 0);
|
|
|
endTime = queryDate.atTime(12, 0, 0);
|
|
|
@@ -166,44 +179,45 @@ public class StudentStatisticsController {
|
|
|
startTime = queryDate.atTime(0, 0, 0);
|
|
|
endTime = queryDate.atTime(23, 59, 59);
|
|
|
}
|
|
|
+ LocalDateTime lastSundayStart = startTime.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY)).plusDays(-1);
|
|
|
+ LocalDateTime lastSundayEnd = endTime.with(TemporalAdjusters.previousOrSame(DayOfWeek.MONDAY)).plusDays(-1);
|
|
|
|
|
|
+ Map<Long, AttendanceRuleDetailsUserVo> allTodyRule = ruleCategoryService.getAllTeacherTodyRule(queryDate.getDayOfWeek().name());
|
|
|
+ //查询当前时间段存在请假的学生
|
|
|
+ Map<Long, StudentLeave> leaveList = studentLeaveService.getLeaveList(startTime, endTime);
|
|
|
+ //查询进入记录
|
|
|
List<StudentOutInRecord> outInRecords = studentOutInRecordService.list(
|
|
|
new QueryWrapper<StudentOutInRecord>().lambda()
|
|
|
.between(StudentOutInRecord::getRecordTime, startTime, endTime)
|
|
|
+ .eq(StudentOutInRecord::getStatus, 0)
|
|
|
);
|
|
|
- //实到人数
|
|
|
- statisticsVo.setActualCount(Long.valueOf(outInRecords.size()));
|
|
|
-
|
|
|
- //查询教师请假人数
|
|
|
- Long leaveCount = studentLeaveService.getLeaveCount(startTime, endTime);
|
|
|
- if(leaveCount == null){
|
|
|
- leaveCount = 0L;
|
|
|
+ Map<Long, StudentOutInRecord> outInMap = new HashMap<>();
|
|
|
+ for (StudentOutInRecord inRecord : outInRecords) {
|
|
|
+ outInMap.put(inRecord.getUserId(), inRecord);
|
|
|
}
|
|
|
- statisticsVo.setLeaveCount(leaveCount);
|
|
|
-
|
|
|
- //查询每个人当天的考勤规则
|
|
|
- Map<Long, AttendanceRuleDetailsUserVo> allTeacherTodyRule = ruleCategoryService.getAllStudentTodyRule(queryDate.getDayOfWeek().name());
|
|
|
- //通过考勤规则和实到人数信息,计算迟到的
|
|
|
- Long lateCount = 0L;
|
|
|
- for (StudentOutInRecord outInRecord : outInRecords) {
|
|
|
- AttendanceRuleDetailsUserVo ruleDetails = allTeacherTodyRule.get(outInRecord.getUserId());
|
|
|
- if(dto.getTimePeriod() == 1 && outInRecord.getRecordTime().toLocalTime().compareTo(ruleDetails.getAmStartTime()) > 0){
|
|
|
- lateCount ++;
|
|
|
- }else if(dto.getTimePeriod() == 2 && outInRecord.getRecordTime().toLocalTime().compareTo(ruleDetails.getPmStartTime()) > 0){
|
|
|
- lateCount ++;
|
|
|
+ for (StudentStatisticsPageVo record : voIPage.getRecords()) {
|
|
|
+ StudentLeave studentLeave = leaveList.get(record.getUserId());
|
|
|
+ if(studentLeave != null){
|
|
|
+ record.setStatus(studentLeave.getLeaveType());
|
|
|
+ }else{
|
|
|
+ AttendanceRuleDetailsUserVo ruleUserVo = allTodyRule.get(record.getUserId());
|
|
|
+ StudentOutInRecord outInRecord = outInMap.get(record.getUserId());
|
|
|
+ if(ruleUserVo.getIsAllowInOutSchool() != null && ruleUserVo.getIsAllowInOutSchool() == 0){
|
|
|
+ record.setStatus("不考核");
|
|
|
+ }else{
|
|
|
+ if(dto.getTimePeriod() == 1 && outInRecord.getRecordTime().toLocalTime().compareTo(ruleUserVo.getAmStartTime()) > 0){
|
|
|
+ record.setStatus("迟到");
|
|
|
+ }else if(dto.getTimePeriod() == 2 && outInRecord.getRecordTime().toLocalTime().compareTo(ruleUserVo.getPmStartTime()) > 0){
|
|
|
+ record.setStatus("迟到");
|
|
|
+ }else{
|
|
|
+ record.setStatus("到校");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- statisticsVo.setLateCount(lateCount);
|
|
|
-
|
|
|
- //最后通过总人数-实到人数-请假人数计算出缺勤人数
|
|
|
- statisticsVo.setAbsenteeismCount(statisticsVo.getAllCount() - statisticsVo.getLeaveCount() - statisticsVo.getActualCount());
|
|
|
-
|
|
|
- //计算出勤率
|
|
|
- BigDecimal divide = BigDecimal.valueOf(statisticsVo.getActualCount()).divide(BigDecimal.valueOf(statisticsVo.getAllCount()), 2, RoundingMode.HALF_UP);
|
|
|
- statisticsVo.setAttendanceRate(divide.doubleValue());
|
|
|
}
|
|
|
-
|
|
|
- return RT.ok(statisticsVo);
|
|
|
+ PageOutput<StudentStatisticsPageVo> pageOutput = ConventPage.getPageOutput(voIPage, StudentStatisticsPageVo.class);
|
|
|
+ return RT.ok(pageOutput);
|
|
|
}
|
|
|
|
|
|
|