|
@@ -874,6 +874,13 @@ public class ClassGroupServiceImpl extends BaseServiceImpl<Integer, ClassGroup>
|
|
|
//老师结算表
|
|
|
courseScheduleTeacherSalaryDao.batchInsert(courseScheduleTeacherSalaryList);
|
|
|
|
|
|
+ //加入合奏班
|
|
|
+ ClassGroupRelation classGroupRelation = new ClassGroupRelation();
|
|
|
+ classGroupRelation.setClassGroupId(classGroup4MixDto.getClassGroupId());
|
|
|
+ classGroupRelation.setSubClassGroupId(classGroup.getId());
|
|
|
+ classGroupRelation.setCreateTime(date);
|
|
|
+ classGroupRelationService.insert(classGroupRelation);
|
|
|
+
|
|
|
//6、添加学生未上合奏课课程
|
|
|
List<CourseSchedule> noStartCourses = courseScheduleDao.findNoStartCoursesByClassGroupId(classGroup4MixDto.getClassGroupId());
|
|
|
for (CourseSchedule noStartCourse : noStartCourses) {
|