|
@@ -1,12 +1,14 @@
|
|
|
package com.ym.mec.biz.service.impl;
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
-import com.baomidou.mybatisplus.extension.api.R;
|
|
|
import com.ym.mec.auth.api.client.SysUserFeignService;
|
|
|
import com.ym.mec.auth.api.entity.SysUser;
|
|
|
import com.ym.mec.biz.dal.dao.*;
|
|
|
import com.ym.mec.biz.dal.dto.*;
|
|
|
-import com.ym.mec.biz.dal.entity.*;
|
|
|
+import com.ym.mec.biz.dal.entity.IndexBaseMonthData;
|
|
|
+import com.ym.mec.biz.dal.entity.IndexErrInfoDto;
|
|
|
+import com.ym.mec.biz.dal.entity.Organization;
|
|
|
+import com.ym.mec.biz.dal.entity.StudentRegistration;
|
|
|
import com.ym.mec.biz.dal.enums.*;
|
|
|
import com.ym.mec.biz.dal.page.IndexDataQueryInfo;
|
|
|
import com.ym.mec.biz.dal.page.OrganCloudStudyStudentDataQueryInfo;
|
|
@@ -35,6 +37,8 @@ import java.util.concurrent.CompletableFuture;
|
|
|
import java.util.concurrent.ExecutorService;
|
|
|
import java.util.concurrent.Executors;
|
|
|
import java.util.function.Consumer;
|
|
|
+import java.util.function.Function;
|
|
|
+import java.util.function.Supplier;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
import static com.ym.mec.biz.dal.enums.IndexDataType.*;
|
|
@@ -58,8 +62,6 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
@Autowired
|
|
|
private SysUserFeignService sysUserFeignService;
|
|
|
@Autowired
|
|
|
- private StudentExtracurricularExercisesSituationDao studentExtracurricularExercisesSituationDao;
|
|
|
- @Autowired
|
|
|
private ClassGroupDao classGroupDao;
|
|
|
@Autowired
|
|
|
private StudentRegistrationDao studentRegistrationDao;
|
|
@@ -363,43 +365,33 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
//异步处理经营数据查询
|
|
|
public void syncOperation(String startDate1,String endDate1,List<Integer> arrayList,Integer tenantId,List<IndexBaseDto> indexBaseDtoList,Map<IndexDataType, List<IndexBaseMonthData>> typeDateMap){
|
|
|
CompletableFuture future1 = CompletableFuture.supplyAsync(() -> {
|
|
|
-// List<IndexBaseDto> indexBaseDtoList = new ArrayList<>();
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(ORGAN_RENEW_AMOUNT,indexBaseMonthDataDao.getOrganTotalAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,"RENEW",null,tenantId)));
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(ORGAN_VIP_AMOUNT,indexBaseMonthDataDao.getOrganVipAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,tenantId)));
|
|
|
-// return indexBaseDtoList;
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
CompletableFuture future2 = CompletableFuture.supplyAsync(() -> {
|
|
|
-// List<IndexBaseDto> indexBaseDtoList = new ArrayList<>();
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(ORGAN_PRACTICE_AMOUNT,indexBaseMonthDataDao.getOrganTotalAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,"PRACTICE_GROUP_BUY,PRACTICE_GROUP_RENEW",null,tenantId)));
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(ORGAN_OTHER_AMOUNT,indexBaseMonthDataDao.getOrganOtherAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,tenantId)));
|
|
|
-// return indexBaseDtoList;
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
CompletableFuture future3 = CompletableFuture.supplyAsync(() -> {
|
|
|
-// List<IndexBaseDto> indexBaseDtoList = new ArrayList<>();
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(IndexDataType.ORGAN_TOTAL_AMOUNT,indexBaseMonthDataDao.getOrganTotalAmountDataWithTimely(startDate1, endDate1, arrayList,tenantId)));
|
|
|
//经营报表细化
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(ORGAN_APPLY_AMOUNT,indexBaseMonthDataDao.getOrganTotalAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,"APPLY,ADD_STUDENT",null,tenantId)));
|
|
|
-// return indexBaseDtoList;
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
CompletableFuture future4 = CompletableFuture.supplyAsync(() -> {
|
|
|
-// List<IndexBaseDto> indexBaseDtoList = new ArrayList<>();
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(IndexDataType.ORGAN_FINANCE_BALANCE_AMOUNT,indexBaseMonthDataDao.getOrganFinanceBalanceDataWithTimely(startDate1, endDate1, arrayList,tenantId)));
|
|
|
indexBaseDtoList.add(this.getIndexBaseDto(ORGAN_FINANCE_AMOUNT,indexBaseMonthDataDao.getOrganFinanceActualDataWithTimely(startDate1, endDate1, arrayList,tenantId)));
|
|
|
-// return indexBaseDtoList;
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
|
|
|
CompletableFuture future5 = CompletableFuture.supplyAsync(()->{
|
|
|
-// Map<IndexDataType, List<IndexBaseMonthData>> typeDateMap = new HashMap<>(2);
|
|
|
typeDateMap.put(IndexDataType.FINANCE_BALANCE_AMOUNT,indexBaseMonthDataDao.getFinanceBalanceDataWithTimely(startDate1, endDate1, arrayList,tenantId));
|
|
|
typeDateMap.put(FINANCE_AMOUNT,indexBaseMonthDataDao.getFinanceActualDataWithTimely(startDate1, endDate1, arrayList,tenantId));
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
CompletableFuture future6 = CompletableFuture.supplyAsync(()->{
|
|
|
-// Map<IndexDataType, List<IndexBaseMonthData>> typeDateMap = new HashMap<>(2);
|
|
|
List<IndexBaseMonthData> renewAmount = indexBaseMonthDataDao.getTotalAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,"RENEW",null,tenantId);
|
|
|
typeDateMap.put(RENEW_AMOUNT,renewAmount);
|
|
|
List<IndexBaseMonthData> vipAmount = indexBaseMonthDataDao.getVipAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,tenantId);
|
|
@@ -407,7 +399,6 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
CompletableFuture future7 = CompletableFuture.supplyAsync(()->{
|
|
|
-// Map<IndexDataType, List<IndexBaseMonthData>> typeDateMap = new HashMap<>(2);
|
|
|
List<IndexBaseMonthData> totalAmountDataWithTimely = indexBaseMonthDataDao.getTotalAmountDataWithTimely(startDate1, endDate1, arrayList,tenantId);
|
|
|
typeDateMap.put(IndexDataType.TOTAL_AMOUNT,totalAmountDataWithTimely);
|
|
|
//经营报表细化
|
|
@@ -416,7 +407,6 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
return true;
|
|
|
},exportExecutorService);
|
|
|
CompletableFuture future8 = CompletableFuture.supplyAsync(()->{
|
|
|
-// Map<IndexDataType, List<IndexBaseMonthData>> typeDateMap = new HashMap<>(2);
|
|
|
List<IndexBaseMonthData> practiceAmount = indexBaseMonthDataDao.getTotalAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,"PRACTICE_GROUP_BUY,PRACTICE_GROUP_RENEW",null,tenantId);
|
|
|
typeDateMap.put(PRACTICE_AMOUNT,practiceAmount);
|
|
|
List<IndexBaseMonthData> otherAmount = indexBaseMonthDataDao.getOtherAmountDataWithTimelyDetails(startDate1, endDate1, arrayList,tenantId);
|
|
@@ -726,15 +716,23 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ private CompletableFuture async(Runnable runnable){
|
|
|
+ return CompletableFuture.runAsync(() -> {
|
|
|
+ runnable.run();
|
|
|
+ },exportExecutorService);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public Map<String, Object> getIndexErrData(String organIdsStr, IndexErrorType errorType) {
|
|
|
//只筛选指定时间之后的数据
|
|
|
- String startTime = DateUtil.format(DateUtil.getFirstDayOfMonth(DateUtil.addMonths(new Date(), -1)),DateUtil.ISO_EXPANDED_DATE_FORMAT);
|
|
|
+ Date date = new Date();
|
|
|
+ String startTime = DateUtil.format(DateUtil.getFirstDayOfMonth(DateUtil.addMonths(date, -1)),DateUtil.ISO_EXPANDED_DATE_FORMAT);
|
|
|
|
|
|
Set<Integer> organIds = null;
|
|
|
if(StringUtils.isNotBlank(organIdsStr)){
|
|
|
organIds = Arrays.stream(organIdsStr.split(",")).map(Integer::new).collect(Collectors.toSet());
|
|
|
}
|
|
|
+ Set<Integer> organIdList = organIds;
|
|
|
List<IndexErrInfoDto> all = new ArrayList<>();
|
|
|
SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
//如果当前用户只有教务老师角色,那么只能看到他所管理的课程组的信息
|
|
@@ -746,26 +744,35 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
classGroupIds = classGroupDao.queryGroupClassGroupIds(sysUser.getId());
|
|
|
educationUserId = sysUser.getId();
|
|
|
}
|
|
|
+ Integer educationId = educationUserId;
|
|
|
+ List<Long> classGroupIdList = classGroupIds;
|
|
|
Integer tenantId = TenantContextHolder.getTenantId();
|
|
|
if(IndexErrorType.MUSIC_PATROL.equals(errorType)){
|
|
|
IndexErrInfoDto<IndexErrInfoDto> one = new IndexErrInfoDto<>();
|
|
|
one.setErrorType(IndexErrorType.MUSIC_PATROL);
|
|
|
one.setDesc(IndexErrorType.MUSIC_PATROL.getMsg());
|
|
|
List<IndexErrInfoDto> oneChild = new ArrayList<>();
|
|
|
-
|
|
|
//基础技能班学员数量异常
|
|
|
- oneChild.add(new IndexErrInfoDto(IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE, IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE.getMsg(), indexBaseMonthDataDao.countLessThenThreeClassGroupNum(organIds,educationUserId,tenantId,false), null));
|
|
|
-
|
|
|
+ CompletableFuture future1 = this.async(()->{
|
|
|
+ oneChild.add(new IndexErrInfoDto(IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE,
|
|
|
+ indexBaseMonthDataDao.countLessThenThreeClassGroupNum(organIdList,educationId,tenantId,false)));
|
|
|
+ });
|
|
|
//乐团巡查事项异常
|
|
|
- int errInspection = indexBaseMonthDataDao.queryErrInspection(organIds,startTime,tenantId);
|
|
|
- oneChild.add(new IndexErrInfoDto(IndexErrorType.MUSIC_PATROL_ITEM, IndexErrorType.MUSIC_PATROL_ITEM.getMsg(),errInspection, null));
|
|
|
-
|
|
|
+ CompletableFuture future2 = this.async(()->{
|
|
|
+ oneChild.add(new IndexErrInfoDto(IndexErrorType.MUSIC_PATROL_ITEM,
|
|
|
+ indexBaseMonthDataDao.queryErrInspection(organIdList,startTime,tenantId)));
|
|
|
+ });
|
|
|
//未加入任何班级学员
|
|
|
- IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIds,educationUserId,tenantId,true);
|
|
|
- noClassMusicGroupStudentInfo.setErrorType(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_ERROR);
|
|
|
- noClassMusicGroupStudentInfo.setDesc(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_ERROR.getMsg());
|
|
|
- oneChild.add(noClassMusicGroupStudentInfo);
|
|
|
-
|
|
|
+ CompletableFuture future3 = this.async(()-> {
|
|
|
+ oneChild.add(new IndexErrInfoDto(IndexErrorType.MUSIC_PATROL_ITEM,
|
|
|
+ indexBaseMonthDataDao.queryErrInspection(organIdList,startTime,tenantId)));
|
|
|
+
|
|
|
+ IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIdList,educationId,tenantId,true);
|
|
|
+ noClassMusicGroupStudentInfo.setErrorType(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_ERROR);
|
|
|
+ noClassMusicGroupStudentInfo.setDesc(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_ERROR.getMsg());
|
|
|
+ oneChild.add(noClassMusicGroupStudentInfo);
|
|
|
+ });
|
|
|
+ future1.join();future2.join();future3.join();
|
|
|
one.setNum(oneChild.stream().mapToInt(IndexErrInfoDto::getNum).sum());
|
|
|
one.setResult(oneChild);
|
|
|
all.add(one);
|
|
@@ -778,35 +785,35 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
two.setDesc(IndexErrorType.STUDENT_INFO.getMsg());
|
|
|
List<IndexErrInfoDto> twoChild = new ArrayList<>();
|
|
|
//学员请假异常提醒(只提醒本月的异常)
|
|
|
- int studentErrorLeave = 0;
|
|
|
- String studentErrorLeaveNum = sysTenantConfigService.getTenantConfigValue(SysConfigService.STUDENT_ERROR_LEAVE_NUM, tenantId);
|
|
|
- if(StringUtils.isNotEmpty(studentErrorLeaveNum)){
|
|
|
- String format1 = DateUtil.format(new Date(), DateUtil.ISO_YEAR_MONTH_FORMAT);
|
|
|
- studentErrorLeave = indexBaseMonthDataDao.countStudentErrorLeave(organIds, format1, classGroupIds,Integer.parseInt(studentErrorLeaveNum),tenantId);
|
|
|
- }
|
|
|
-
|
|
|
- twoChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_ERROR_LEAVE, IndexErrorType.STUDENT_ERROR_LEAVE.getMsg(),studentErrorLeave , null));
|
|
|
-
|
|
|
- //未缴费学员数
|
|
|
- twoChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_ARREARAGE, IndexErrorType.STUDENT_ARREARAGE.getMsg(),
|
|
|
- indexBaseMonthDataDao.countNoPaymentStudentNum(organIds,educationUserId,tenantId,true), Arrays.asList(educationUserId)));
|
|
|
-
|
|
|
- //申请退团学员数
|
|
|
- List<Long> quitGroupNum = indexBaseMonthDataDao.queryApplyForQuitGroupNum(organIds,educationUserId,tenantId);
|
|
|
- twoChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_APPLY_FOR_QUIT_MUSIC_GROUP, IndexErrorType.STUDENT_APPLY_FOR_QUIT_MUSIC_GROUP.getMsg(), quitGroupNum.size(), quitGroupNum));
|
|
|
-
|
|
|
- //学员已排课时长未消耗完
|
|
|
-// Map<String, Object> params = new HashMap<>();
|
|
|
-// params.put("organId", organIdsStr);
|
|
|
-// params.put("tenantId", tenantId);
|
|
|
-// twoChild.add(new IndexErrInfoDto(IndexErrorType.HAS_FREE_COURSE_TIMES, IndexErrorType.HAS_FREE_COURSE_TIMES.getMsg(), musicGroupDao.countHasFreeCourseTimes(params), null));
|
|
|
+ CompletableFuture future1 = this.async(() -> {
|
|
|
+ int studentErrorLeave = 0;
|
|
|
+ String studentErrorLeaveNum = sysTenantConfigService.getTenantConfigValue(SysConfigService.STUDENT_ERROR_LEAVE_NUM, tenantId);
|
|
|
+ if (StringUtils.isNotEmpty(studentErrorLeaveNum)) {
|
|
|
+ String format1 = DateUtil.format(new Date(), DateUtil.ISO_YEAR_MONTH_FORMAT);
|
|
|
+ studentErrorLeave = indexBaseMonthDataDao.countStudentErrorLeave(organIdList, format1, classGroupIdList, Integer.parseInt(studentErrorLeaveNum), tenantId);
|
|
|
+ }
|
|
|
+ twoChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_ERROR_LEAVE,studentErrorLeave));
|
|
|
+ });
|
|
|
+ CompletableFuture future2 = this.async(() -> {
|
|
|
+ //未缴费学员数
|
|
|
+ twoChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_ARREARAGE,
|
|
|
+ indexBaseMonthDataDao.countNoPaymentStudentNum(organIdList,educationId,tenantId,true), Arrays.asList(educationId)));
|
|
|
+
|
|
|
+ //申请退团学员数
|
|
|
+ List<Long> quitGroupNum = indexBaseMonthDataDao.queryApplyForQuitGroupNum(organIdList,educationId,tenantId);
|
|
|
+ twoChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_APPLY_FOR_QUIT_MUSIC_GROUP
|
|
|
+ , quitGroupNum.size(), quitGroupNum));
|
|
|
+ });
|
|
|
|
|
|
//合作单位回款异常
|
|
|
- Map<String, Object> params1 = new HashMap<>();
|
|
|
- params1.put("organId", organIdsStr);
|
|
|
- params1.put("errorType", "COOPERATION_PAYMENT_ERROR");
|
|
|
- twoChild.add(new IndexErrInfoDto(IndexErrorType.COOPERATION_PAYMENT_ERROR, IndexErrorType.COOPERATION_PAYMENT_ERROR.getMsg(), musicGroupCalenderRefundPeriodDao.countCoopRefund(params1), null));
|
|
|
-
|
|
|
+ CompletableFuture future3 = this.async(() -> {
|
|
|
+ Map<String, Object> params1 = new HashMap<>();
|
|
|
+ params1.put("organId", organIdsStr);
|
|
|
+ params1.put("errorType", "COOPERATION_PAYMENT_ERROR");
|
|
|
+ twoChild.add(new IndexErrInfoDto(IndexErrorType.COOPERATION_PAYMENT_ERROR
|
|
|
+ , musicGroupCalenderRefundPeriodDao.countCoopRefund(params1)));
|
|
|
+ });
|
|
|
+ future1.join();future2.join();future3.join();
|
|
|
two.setNum(twoChild.stream().mapToInt(IndexErrInfoDto::getNum).sum());
|
|
|
two.setResult(twoChild);
|
|
|
all.add(two);
|
|
@@ -822,18 +829,24 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
if (onlyForRole) {
|
|
|
userId = sysUser.getId();
|
|
|
}
|
|
|
-
|
|
|
- //乐团巡查任务未计划
|
|
|
- int inspectionItem = indexBaseMonthDataDao.queryInspectionItem(organIdsStr,startTime,userId,tenantId);
|
|
|
- threeChild.add(new IndexErrInfoDto(IndexErrorType.INSPECTION_ITEM, IndexErrorType.INSPECTION_ITEM.getMsg(),inspectionItem, null));
|
|
|
-
|
|
|
- //乐团巡查任务未提交
|
|
|
- int inspectionItemPlan = indexBaseMonthDataDao.queryInspectionItemPlan(organIdsStr,startTime,tenantId);
|
|
|
- threeChild.add(new IndexErrInfoDto(IndexErrorType.INSPECTION_ITEM_PLAN, IndexErrorType.INSPECTION_ITEM_PLAN.getMsg(),inspectionItemPlan, null));
|
|
|
-
|
|
|
- //回访任务未完成
|
|
|
- int studentVisit = indexBaseMonthDataDao.queryStudentVisit(organIdsStr,startTime,userId,tenantId);
|
|
|
- threeChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_VISIT, IndexErrorType.STUDENT_VISIT.getMsg(),studentVisit, null));
|
|
|
+ Integer userId1 = userId;
|
|
|
+ CompletableFuture future1 = this.async(() -> {
|
|
|
+ //乐团巡查任务未计划
|
|
|
+ int inspectionItem = indexBaseMonthDataDao.queryInspectionItem(organIdsStr,startTime,userId1,tenantId);
|
|
|
+ threeChild.add(new IndexErrInfoDto(IndexErrorType.INSPECTION_ITEM,inspectionItem));
|
|
|
+ });
|
|
|
+ CompletableFuture future2 = this.async(() -> {
|
|
|
+ //乐团巡查任务未提交
|
|
|
+ int inspectionItemPlan = indexBaseMonthDataDao.queryInspectionItemPlan(organIdsStr,startTime,tenantId);
|
|
|
+ threeChild.add(new IndexErrInfoDto(IndexErrorType.INSPECTION_ITEM_PLAN,inspectionItemPlan));
|
|
|
+
|
|
|
+ });
|
|
|
+ CompletableFuture future3 = this.async(() -> {
|
|
|
+ //回访任务未完成
|
|
|
+ int studentVisit = indexBaseMonthDataDao.queryStudentVisit(organIdsStr,startTime,userId1,tenantId);
|
|
|
+ threeChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_VISIT,studentVisit));
|
|
|
+ });
|
|
|
+ future1.join();future2.join();future3.join();
|
|
|
|
|
|
three.setNum(threeChild.stream().mapToInt(IndexErrInfoDto::getNum).sum());
|
|
|
three.setResult(threeChild);
|
|
@@ -846,6 +859,13 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
four.setDesc(IndexErrorType.ATTENDANCE_SERVE.getMsg());
|
|
|
List<IndexErrInfoDto> fourChild = new ArrayList<>();
|
|
|
|
|
|
+ CompletableFuture future1 = this.async(() -> {
|
|
|
+ String month = DateUtil.format(date,DateUtil.ISO_YEAR_MONTH_FORMAT);
|
|
|
+ //当月排课异常: (1)剩余课时(未开始+排课资格)4的学员,本月排课节数少于4节
|
|
|
+ int currentCourseError = indexBaseMonthDataDao.getCurrentCourseError(month,organIdList);
|
|
|
+ fourChild.add(new IndexErrInfoDto(IndexErrorType.CURRENT_COURSE_ERROR, currentCourseError));
|
|
|
+ });
|
|
|
+
|
|
|
//课程考勤异常
|
|
|
int teacherAttendanceError = 0;
|
|
|
int studentAttendanceError = 0;
|
|
@@ -855,29 +875,11 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
studentAttendanceError = indexBaseMonthDataDao.getStudentAttendanceError(organIds,startTime,classGroupIds,tenantId);
|
|
|
noAttendance = indexBaseMonthDataDao.getNoAttendance(organIds,startTime,classGroupIds,tenantId);
|
|
|
}
|
|
|
- fourChild.add(new IndexErrInfoDto(IndexErrorType.TEACHER_EXCEPTION_ATTENDANCE, IndexErrorType.TEACHER_EXCEPTION_ATTENDANCE.getMsg(), teacherAttendanceError, null));
|
|
|
- fourChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_EXCEPTION_ATTENDANCE, IndexErrorType.STUDENT_EXCEPTION_ATTENDANCE.getMsg(), studentAttendanceError, null));
|
|
|
-
|
|
|
+ fourChild.add(new IndexErrInfoDto(IndexErrorType.TEACHER_EXCEPTION_ATTENDANCE, teacherAttendanceError));
|
|
|
+ fourChild.add(new IndexErrInfoDto(IndexErrorType.STUDENT_EXCEPTION_ATTENDANCE, studentAttendanceError));
|
|
|
//课程异常
|
|
|
- fourChild.add(new IndexErrInfoDto(IndexErrorType.TEACHER_NOT_A_CLASS, IndexErrorType.TEACHER_NOT_A_CLASS.getMsg(), noAttendance, null));
|
|
|
-
|
|
|
- //只适用大雅
|
|
|
-// if(tenantId == 1){
|
|
|
-// //服务指标异常
|
|
|
-// Map<String, Object> params = new HashMap<>();
|
|
|
-// LocalDate nowDate = LocalDateTime.now(DateUtil.zoneId).toLocalDate();
|
|
|
-// LocalDate monDayDate = nowDate.with(DateUtil.weekFields.dayOfWeek(), DayOfWeek.MONDAY.getValue()).plusDays(-7);
|
|
|
-// LocalDate sunDayDate = nowDate.with(DateUtil.weekFields.dayOfWeek(), DayOfWeek.SUNDAY.getValue()).plusDays(-7);
|
|
|
-// params.put("organIds", organIds);
|
|
|
-// params.put("monday",monDayDate.toString());
|
|
|
-// params.put("sunday",sunDayDate.toString());
|
|
|
-// params.put("jobNature", JobNatureEnum.FULL_TIME);
|
|
|
-// params.put("unDone",1);
|
|
|
-// params.put("reminded",0);
|
|
|
-// params.put("tenantId",tenantId);
|
|
|
-// int serveErrTeacherNum = studentExtracurricularExercisesSituationDao.countTeacherServeInfo(params);
|
|
|
-// fourChild.add(new IndexErrInfoDto(IndexErrorType.TEACHER_SERVE_ERROR, IndexErrorType.TEACHER_SERVE_ERROR.getMsg(), serveErrTeacherNum, null));
|
|
|
-// }
|
|
|
+ fourChild.add(new IndexErrInfoDto(IndexErrorType.TEACHER_NOT_A_CLASS,noAttendance));
|
|
|
+ future1.join();
|
|
|
four.setNum(fourChild.stream().mapToInt(IndexErrInfoDto::getNum).sum());
|
|
|
four.setResult(fourChild);
|
|
|
all.add(four);
|
|
@@ -1153,6 +1155,7 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
if(StringUtils.isNotBlank(organIds)){
|
|
|
organIdSet = Arrays.stream(organIds.split(",")).map(Integer::new).collect(Collectors.toSet());
|
|
|
}
|
|
|
+ Set<Integer> organIdList = organIdSet;
|
|
|
//当前用户是否是分部经理
|
|
|
Boolean onlyForRole = employeePositionService.onlyForRole(SysUserRoleEnum.EDUCATION,sysUser.getId(),sysUser.getIsSuperAdmin());
|
|
|
Integer educationUserId = null;
|
|
@@ -1161,46 +1164,47 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
|
|
|
educationUserId = sysUser.getId();
|
|
|
}
|
|
|
Date date = new Date();
|
|
|
-
|
|
|
+ Integer educationId = educationUserId;
|
|
|
List<IndexErrInfoDto> result = new ArrayList<>();
|
|
|
+ CompletableFuture future1 = this.async(() -> {
|
|
|
+// 待续费学员提醒:剩余课时(未开始+排课资格)≤3
|
|
|
+ int waitRenewInfo = indexBaseMonthDataDao.getWaitRenewInfo(organIdList);
|
|
|
+ result.add(new IndexErrInfoDto(IndexErrorType.WAIT_RENEW_INFO,waitRenewInfo));
|
|
|
+ });
|
|
|
+ CompletableFuture future2 = this.async(() -> {
|
|
|
+ //未缴费学员数
|
|
|
+ result.add(new IndexErrInfoDto(IndexErrorType.STUDENT_NOT_PAYMENT,
|
|
|
+ indexBaseMonthDataDao.countNoPaymentStudentNum(organIdList,educationId,tenantId,false), Arrays.asList(educationId)));
|
|
|
+ String monthStr = DateUtil.format(date, DateUtil.ISO_YEAR_MONTH_FORMAT);
|
|
|
+ //全职未离职老师
|
|
|
+ //预计课酬较低
|
|
|
+ int lowTeacherSalary = indexBaseMonthDataDao.queryLowTeacherSalary(organIds,monthStr, tenantId);
|
|
|
+ result.add(new IndexErrInfoDto(IndexErrorType.TEACHER_EXPECT_SALARY_BE_LOW,lowTeacherSalary));
|
|
|
+ });
|
|
|
|
|
|
- //未缴费学员数
|
|
|
- result.add(new IndexErrInfoDto(IndexErrorType.STUDENT_NOT_PAYMENT, IndexErrorType.STUDENT_NOT_PAYMENT.getMsg(),
|
|
|
- indexBaseMonthDataDao.countNoPaymentStudentNum(organIdSet,educationUserId,tenantId,false), Arrays.asList(educationUserId)));
|
|
|
-
|
|
|
- String monthStr = DateUtil.format(date, DateUtil.ISO_YEAR_MONTH_FORMAT);
|
|
|
- //全职未离职老师
|
|
|
- //预计课酬较低
|
|
|
- int lowTeacherSalary = indexBaseMonthDataDao.queryLowTeacherSalary(organIds,monthStr, tenantId);
|
|
|
- result.add(new IndexErrInfoDto(IndexErrorType.TEACHER_EXPECT_SALARY_BE_LOW, IndexErrorType.TEACHER_EXPECT_SALARY_BE_LOW.getMsg(),lowTeacherSalary, null));
|
|
|
-
|
|
|
- //乐团展演计划提醒
|
|
|
-// List<MusicGroupPerformance> musicGroupPerformances = musicGroupPerformanceDao.findNoStart(educationUserId,organIds);
|
|
|
-// IndexErrInfoDto infoDto1 = new IndexErrInfoDto();
|
|
|
-// infoDto1.setErrorType(IndexErrorType.MUSIC_GROUP_PERFORMANCE);
|
|
|
-// infoDto1.setNum(musicGroupPerformances.stream().map(e -> e.getMusicGroupId()).collect(Collectors.toSet()).size());
|
|
|
-// infoDto1.setNum2(musicGroupPerformances.stream().map(e -> e.getId()).collect(Collectors.toSet()).size());
|
|
|
-// infoDto1.setDesc(IndexErrorType.MUSIC_GROUP_PERFORMANCE.getMsg());
|
|
|
-// result.add(infoDto1);
|
|
|
-
|
|
|
- //乐团剩余时长未排课
|
|
|
- List<String> musicGroupIds = musicGroupDao.queryHasSubCourseTimes(organIds,tenantId);
|
|
|
- result.add(new IndexErrInfoDto(IndexErrorType.MUSIC_GROUP_HAS_COURSE_TIMES, IndexErrorType.MUSIC_GROUP_HAS_COURSE_TIMES.getMsg(),musicGroupIds.size(), null));
|
|
|
-
|
|
|
- //基础技能班学员数量异常提醒
|
|
|
- result.add(new IndexErrInfoDto(IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE_INFO, IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE_INFO.getMsg(), indexBaseMonthDataDao.countLessThenThreeClassGroupNum(organIdSet,educationUserId,tenantId,true), null));
|
|
|
-
|
|
|
- //未加入任何班级学员
|
|
|
- IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIdSet,educationUserId,tenantId,false);
|
|
|
- noClassMusicGroupStudentInfo.setDesc(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_INFO.getMsg());
|
|
|
- result.add(noClassMusicGroupStudentInfo);
|
|
|
-
|
|
|
- //合作单位回款提醒
|
|
|
- Map<String, Object> params = new HashMap<>();
|
|
|
- params.put("organId", organIds);
|
|
|
- params.put("errorType", "COOPERATION_PAYMENT_ALERT");
|
|
|
- result.add(new IndexErrInfoDto(IndexErrorType.COOPERATION_PAYMENT_ALERT, IndexErrorType.COOPERATION_PAYMENT_ALERT.getMsg(), musicGroupCalenderRefundPeriodDao.countCoopRefund(params), null));
|
|
|
+ CompletableFuture future3 = this.async(() -> {
|
|
|
+ //乐团剩余时长未排课
|
|
|
+ List<String> musicGroupIds = musicGroupDao.queryHasSubCourseTimes(organIds,tenantId);
|
|
|
+ result.add(new IndexErrInfoDto(IndexErrorType.MUSIC_GROUP_HAS_COURSE_TIMES,musicGroupIds.size()));
|
|
|
|
|
|
+ //基础技能班学员数量异常提醒
|
|
|
+ result.add(new IndexErrInfoDto(IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE_INFO
|
|
|
+ , indexBaseMonthDataDao.countLessThenThreeClassGroupNum(organIdList,educationId,tenantId,true)));
|
|
|
+ });
|
|
|
+ CompletableFuture future4 = this.async(() -> {
|
|
|
+ //未加入任何班级学员
|
|
|
+ IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIdList,educationId,tenantId,false);
|
|
|
+ noClassMusicGroupStudentInfo.setDesc(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_INFO.getMsg());
|
|
|
+ result.add(noClassMusicGroupStudentInfo);
|
|
|
+
|
|
|
+ //合作单位回款提醒
|
|
|
+ Map<String, Object> params = new HashMap<>(2);
|
|
|
+ params.put("organId", organIds);
|
|
|
+ params.put("errorType", "COOPERATION_PAYMENT_ALERT");
|
|
|
+ result.add(new IndexErrInfoDto(IndexErrorType.COOPERATION_PAYMENT_ALERT
|
|
|
+ , musicGroupCalenderRefundPeriodDao.countCoopRefund(params)));
|
|
|
+ });
|
|
|
+ future1.join();future2.join();future3.join();future4.join();
|
|
|
return result;
|
|
|
}
|
|
|
|