package com.xjrsoft.module.attendance.controller; import cn.dev33.satoken.annotation.SaCheckPermission; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.github.yulichang.toolkit.MPJWrappers; import com.github.yulichang.wrapper.MPJLambdaWrapper; import com.xjrsoft.common.model.result.RT; 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.TeacherStatisticsVo; import com.xjrsoft.module.concat.service.IXjrUserService; import com.xjrsoft.module.organization.entity.UserDeptRelation; import com.xjrsoft.module.outint.entity.StudentOutInRecord; import com.xjrsoft.module.outint.entity.TeacherOutInRecord; import com.xjrsoft.module.outint.service.IStudentOutInRecordService; import com.xjrsoft.module.outint.service.ITeacherOutInRecordService; import com.xjrsoft.module.student.entity.BaseStudent; import com.xjrsoft.module.student.entity.StudentLeave; import com.xjrsoft.module.teacher.entity.BaseTeacher; import com.xjrsoft.module.teacher.entity.XjrUser; import com.xjrsoft.module.teacher.service.IWfTeacherleaveService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import lombok.AllArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.validation.Valid; import java.math.BigDecimal; import java.math.RoundingMode; import java.time.LocalDate; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.List; import java.util.Map; /** * @title: 考勤消息设置 * @Author dzx * @Date: 2024-05-21 * @Version 1.0 */ @RestController @RequestMapping("/statistics") @Api(value = "/statistics" ,tags = "考勤统计") @AllArgsConstructor public class StatisticsController { private final IXjrUserService xjrUserService; private final ITeacherOutInRecordService teacherOutInRecordService; private final IStudentOutInRecordService studentOutInRecordService; private final IAttendanceRuleCategoryService ruleCategoryService; private final IWfTeacherleaveService wfTeacherleaveService; @GetMapping(value = "/teacher-statistics") @ApiOperation(value="教职工考勤统计") @SaCheckPermission("statistics:detail") public RT teacherStatistics(@Valid AttendanceStatisticDto dto){ TeacherStatisticsVo statisticsVo = new TeacherStatisticsVo(); //查询总人数 MPJLambdaWrapper queryWrapper = MPJWrappers.lambdaJoin() .disableSubLogicDel() .innerJoin(BaseTeacher.class,BaseTeacher::getUserId,XjrUser::getId) .innerJoin(UserDeptRelation.class, UserDeptRelation::getUserId, XjrUser::getId); long allCount = xjrUserService.count(queryWrapper); statisticsVo.setAllCount(allCount); 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); }else if(dto.getTimePeriod() == 2){ startTime = queryDate.atTime(12, 0, 0); endTime = queryDate.atTime(18, 0, 0); }else{ startTime = queryDate.atTime(0, 0, 0); endTime = queryDate.atTime(23, 59, 59); } List outInRecords = teacherOutInRecordService.list( new QueryWrapper().lambda() .between(TeacherOutInRecord::getRecordTime, startTime, endTime) ); //实到人数 statisticsVo.setActualCount(Long.valueOf(outInRecords.size())); //查询教师请假人数 Long leaveCount = wfTeacherleaveService.getLeaveCount(startTime, endTime); statisticsVo.setLeaveCount(leaveCount); //查询每个人当天的考勤规则 Map allTeacherTodyRule = ruleCategoryService.getAllTeacherTodyRule(queryDate.getDayOfWeek().name()); //通过考勤规则和实到人数信息,计算迟到的 Long lateCount = 0L; for (TeacherOutInRecord outInRecord : outInRecords) { AttendanceRuleDetailsUserVo ruleDetails = allTeacherTodyRule.get(outInRecord.getUserId()); if(ruleDetails == null){ continue; } 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 ++; } } 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); } @GetMapping(value = "/student-statistics") @ApiOperation(value="教职工考勤统计") @SaCheckPermission("statistics:detail") public RT studentStatistics(@Valid AttendanceStatisticDto dto){ TeacherStatisticsVo statisticsVo = new TeacherStatisticsVo(); //查询总人数 MPJLambdaWrapper queryWrapper = MPJWrappers.lambdaJoin() .disableSubLogicDel() .innerJoin(BaseStudent.class, BaseStudent::getUserId, XjrUser::getId); long allCount = xjrUserService.count(queryWrapper); statisticsVo.setAllCount(allCount); 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); }else if(dto.getTimePeriod() == 2){ startTime = queryDate.atTime(12, 0, 0); endTime = queryDate.atTime(18, 0, 0); }else{ startTime = queryDate.atTime(0, 0, 0); endTime = queryDate.atTime(23, 59, 59); } List outInRecords = studentOutInRecordService.list( new QueryWrapper().lambda() .between(StudentOutInRecord::getRecordTime, startTime, endTime) ); //实到人数 statisticsVo.setActualCount(Long.valueOf(outInRecords.size())); //查询教师请假人数 Long leaveCount = wfTeacherleaveService.getLeaveCount(startTime, endTime); statisticsVo.setLeaveCount(leaveCount); //查询每个人当天的考勤规则 Map allTeacherTodyRule = ruleCategoryService.getAllTeacherTodyRule(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 ++; } } 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); } }