|
@@ -144,12 +144,6 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
private StudentService studentService;
|
|
|
@Autowired
|
|
|
private CourseScheduleTeacherSalaryService courseScheduleTeacherSalaryService;
|
|
|
- @Autowired
|
|
|
- private CourseScheduleStudentPaymentService courseScheduleStudentPaymentService;
|
|
|
- @Autowired
|
|
|
- private ImGroupService imGroupService;
|
|
|
- @Autowired
|
|
|
- private ImGroupMemberService imGroupMemberService;
|
|
|
|
|
|
private static Map<Integer, Map<Integer, List<Integer>>> schoolSubjectTeachersMap;
|
|
|
|
|
@@ -4571,7 +4565,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Map countPracticeGroupPredictFee(PracticeGroupApplyBaseInfoDto practice, Integer teacherId, Long courseId) {
|
|
|
+ public Map countPracticeGroupPredictFee(PracticeGroupApplyBaseInfoDto practice, Integer teacherId) {
|
|
|
if(Objects.isNull(teacherId)){
|
|
|
throw new BizException("请指定教师");
|
|
|
}
|
|
@@ -4709,7 +4703,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
applyBaseInfoDto.setName(className.toString());
|
|
|
|
|
|
//计算课程相关费用信息
|
|
|
- Map<String, BigDecimal> costInfo = countPracticeGroupPredictFee(applyBaseInfoDto,applyBaseInfoDto.getUserId(), null);
|
|
|
+ Map<String, BigDecimal> costInfo = countPracticeGroupPredictFee(applyBaseInfoDto,applyBaseInfoDto.getUserId());
|
|
|
|
|
|
applyBaseInfoDto.setAuditStatus(AuditStatusEnum.PASS);
|
|
|
|
|
@@ -4782,6 +4776,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
classGroupTeacherSalary.setUpdateTime(now);
|
|
|
classGroupTeacherSalaryDao.insert(classGroupTeacherSalary);
|
|
|
|
|
|
+ List<CourseScheduleTeacherSalary> courseScheduleTeacherSalaries = new ArrayList<>();
|
|
|
//课程信息调整
|
|
|
courseSchedules.forEach(courseSchedule -> {
|
|
|
courseSchedule.setGroupType(GroupType.PRACTICE);
|
|
@@ -4793,7 +4788,19 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
courseSchedule.setClassGroupId(classGroup.getId());
|
|
|
courseSchedule.setName(applyBaseInfoDto.getName());
|
|
|
courseSchedule.setOrganId(applyBaseInfoDto.getOrganId());
|
|
|
+
|
|
|
+ //课程与老师薪水表
|
|
|
+ CourseScheduleTeacherSalary courseScheduleTeacherSalary = new CourseScheduleTeacherSalary();
|
|
|
+ courseScheduleTeacherSalary.setCourseScheduleId(courseSchedule.getId());
|
|
|
+ courseScheduleTeacherSalary.setGroupType(GroupType.PRACTICE);
|
|
|
+ courseScheduleTeacherSalary.setMusicGroupId(applyBaseInfoDto.getId().toString());
|
|
|
+ courseScheduleTeacherSalary.setTeacherRole(TeachTypeEnum.BISHOP);
|
|
|
+ courseScheduleTeacherSalary.setUserId(applyBaseInfoDto.getUserId());
|
|
|
+ courseScheduleTeacherSalary.setExpectSalary(applyBaseInfoDto.getOnlineTeacherSalary());
|
|
|
+ courseScheduleTeacherSalary.setClassGroupId(classGroup.getId());
|
|
|
+ courseScheduleTeacherSalaries.add(courseScheduleTeacherSalary);
|
|
|
});
|
|
|
+ courseScheduleTeacherSalaryDao.batchInsert(courseScheduleTeacherSalaries);
|
|
|
courseScheduleService.checkNewCourseSchedules(courseSchedules,false,false);
|
|
|
applyBaseInfoDto.setCourseScheduleJson(JSON.toJSONString(courseSchedules));
|
|
|
practiceGroupDao.update(applyBaseInfoDto);
|
|
@@ -4923,6 +4930,12 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
if(use != 1){
|
|
|
throw new BizException("网管课创建失败,请联系管理员");
|
|
|
}
|
|
|
+ //是否消耗课程余额
|
|
|
+ if(activity.isPayToBalance() && !giveFlag){
|
|
|
+ ActivityUserMapper activityUserMapper = activityUserMappers.get(0);
|
|
|
+ StudentPaymentOrder order = studentPaymentOrderDao.get(activityUserMapper.getPaymentOrderId());
|
|
|
+ sysUserCashAccountService.appendCourseBalance(studentId,order.getExpectAmount().subtract(order.getCouponRemitFee()).negate(),PlatformCashAccountDetailTypeEnum.PAY_FEE,"活动排课消耗课程余额");
|
|
|
+ }
|
|
|
|
|
|
//创建班级信息
|
|
|
ClassGroup classGroup=new ClassGroup();
|
|
@@ -4952,7 +4965,7 @@ public class PracticeGroupServiceImpl extends BaseServiceImpl<Long, PracticeGrou
|
|
|
classGroupStudentMapperDao.classGroupStudentsInsert(classGroupStudentMapperList);
|
|
|
|
|
|
//计算课程相关费用信息
|
|
|
- Map<String, BigDecimal> costInfo = countPracticeGroupPredictFee(applyBaseInfo,applyBaseInfo.getUserId(), null);
|
|
|
+ Map<String, BigDecimal> costInfo = countPracticeGroupPredictFee(applyBaseInfo,applyBaseInfo.getUserId());
|
|
|
if(practice.getGiveFlag()){
|
|
|
applyBaseInfo.setOnlineTeacherSalary(costInfo.get("giveOnlineTeacherSalary"));
|
|
|
}else {
|