|
|
|
@ -1,16 +1,14 @@ |
|
|
|
|
package org.jeecg.modules.cms.service; |
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.jeecg.modules.course.entity.SeChapter; |
|
|
|
|
import org.jeecg.common.util.ComputeUtils; |
|
|
|
|
import org.jeecg.modules.course.entity.SeCourse; |
|
|
|
|
import org.jeecg.modules.course.entity.SeCourseobjectives; |
|
|
|
|
import org.jeecg.modules.course.service.ISeChapterService; |
|
|
|
|
import org.jeecg.modules.course.service.ISeCourseService; |
|
|
|
|
import org.jeecg.modules.course.service.ISeCourseobjectivesService1; |
|
|
|
|
import org.jeecg.modules.course.vo.SeChapterVo; |
|
|
|
|
import org.jeecg.modules.course.vo.SeCourseobjectives1; |
|
|
|
|
import org.jeecg.modules.course.service.ISeCourseobjectivesService; |
|
|
|
|
import org.jeecg.modules.demo.knowcourse.entity.Knowcourse; |
|
|
|
|
import org.jeecg.modules.demo.knowcourse.service.IKnowcourseService; |
|
|
|
|
import org.jeecg.modules.py.entity.*; |
|
|
|
@ -27,6 +25,7 @@ import org.springframework.util.ObjectUtils; |
|
|
|
|
import org.springframework.util.StringUtils; |
|
|
|
|
|
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.concurrent.atomic.AtomicReference; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -65,7 +64,7 @@ public class CmsHomeTrainingPlanServiceImpl implements ICmsHomeTrainingPlanServi |
|
|
|
|
private ISeCourseService iSeCourseService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private ISeCourseobjectivesService1 seCourseobjectivesService1; |
|
|
|
|
private ISeCourseobjectivesService seCourseobjectivesService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private ISeChapterService seChapterService; |
|
|
|
@ -235,53 +234,70 @@ public class CmsHomeTrainingPlanServiceImpl implements ICmsHomeTrainingPlanServi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 3,行与列对应的坐标值,统计每门课程与每个二级毕业要求的学分
|
|
|
|
|
/** |
|
|
|
|
* 邱栋: |
|
|
|
|
* 学分这里是算出来的,根据学时占比,自动计算的 |
|
|
|
|
* |
|
|
|
|
* 邱栋: |
|
|
|
|
* 课程知识点支撑课程目标,课程知识点有学时安排 |
|
|
|
|
* |
|
|
|
|
* 邱栋: |
|
|
|
|
* 支撑某一个课程目标的知识点学时和/总学时=学时占比 |
|
|
|
|
* |
|
|
|
|
* 邱栋: |
|
|
|
|
* 学时占比*学分,就是该课程目标占的学分,它支撑那个毕业要求,就支撑多少学分。 |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
// 统计培养方案每门课程与每个二级毕业要求的学分
|
|
|
|
|
if (!ObjectUtils.isEmpty(seCourseList)) { |
|
|
|
|
for (SeCourse seCourse : seCourseList) { |
|
|
|
|
//1,该课程的课程目标
|
|
|
|
|
List<SeCourseobjectives1> seCourseobjectivesList = seCourseobjectivesService1.list(new LambdaQueryWrapper<SeCourseobjectives1>() |
|
|
|
|
.eq(SeCourseobjectives1::getCourseid, seCourse.getId()) |
|
|
|
|
.ne(SeCourseobjectives1::getPid, "0")); |
|
|
|
|
List<SeCourseobjectives> seCourseobjectivesList = seCourseobjectivesService.list(new LambdaQueryWrapper<SeCourseobjectives>() |
|
|
|
|
.eq(SeCourseobjectives::getCourseid, seCourse.getId()) |
|
|
|
|
.eq(SeCourseobjectives::getIsrelated, "1") |
|
|
|
|
.ne(SeCourseobjectives::getPid, "0")); |
|
|
|
|
|
|
|
|
|
if (ObjectUtils.isEmpty(seCourseobjectivesList)) continue; |
|
|
|
|
|
|
|
|
|
//2,课程对应的章节
|
|
|
|
|
seChapterService.list(new LambdaQueryWrapper<SeChapter>() |
|
|
|
|
.eq(SeChapter::getCourseid, seCourse.getId()) |
|
|
|
|
.ne(SeChapter::getPid, "0")); |
|
|
|
|
// seChapterService.list(new LambdaQueryWrapper<SeChapter>()
|
|
|
|
|
// .eq(SeChapter::getCourseid, seCourse.getId())
|
|
|
|
|
// .ne(SeChapter::getPid, "0"));
|
|
|
|
|
|
|
|
|
|
//3,章节对应的知识点
|
|
|
|
|
List<Knowcourse> knowcourseList = knowcourseService.list(new LambdaQueryWrapper<Knowcourse>() |
|
|
|
|
.eq(Knowcourse::getKcid, seCourse.getId())); |
|
|
|
|
.eq(Knowcourse::getKcid, seCourse.getId()) |
|
|
|
|
.in(Knowcourse::getKcmbid, seCourseobjectivesList.stream().map(o -> o.getId()).collect(Collectors.toSet())) |
|
|
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!ObjectUtils.isEmpty(knowcourseList)) { |
|
|
|
|
//课程知识点支撑的课程目标
|
|
|
|
|
// 【课程目标与课程知识点一对多(一个知识点只能支撑一个课程目标,多个知识点可以共同支撑一个课程目标)】
|
|
|
|
|
|
|
|
|
|
//根据课程目标分组统计知识点
|
|
|
|
|
Map<String, List<Knowcourse>> mbkcFenzuMap = knowcourseList.stream().collect(Collectors.groupingBy(Knowcourse::getKcmbid)); |
|
|
|
|
Map<String, List<Knowcourse>> mbkcFenzuMap = knowcourseList.stream() |
|
|
|
|
.collect(Collectors.groupingBy(Knowcourse::getKcmbid)); |
|
|
|
|
|
|
|
|
|
//课程总学分
|
|
|
|
|
AtomicReference<Double> courseTotalCredit = new AtomicReference<>(new Double(0)); |
|
|
|
|
if (!ObjectUtils.isEmpty(mbkcFenzuMap)) { |
|
|
|
|
//TODO
|
|
|
|
|
mbkcFenzuMap.forEach((k, v) -> { |
|
|
|
|
List<Knowcourse> knowcoursegroup = v; |
|
|
|
|
long count = knowcoursegroup.stream().map(e -> e.getXs()).count(); |
|
|
|
|
System.out.println(k+",的学时总数--------------count = " + count); |
|
|
|
|
/** |
|
|
|
|
* 邱栋: |
|
|
|
|
* 学分这里是算出来的,根据学时占比,自动计算的 |
|
|
|
|
* |
|
|
|
|
* 邱栋: |
|
|
|
|
* 课程知识点支撑课程目标,课程知识点有学时安排 |
|
|
|
|
* 邱栋: |
|
|
|
|
* 支撑某一个课程目标的知识点学时和/总学时=学时占比 |
|
|
|
|
* |
|
|
|
|
* 邱栋: |
|
|
|
|
* 学时占比*学分,就是该课程目标占的学分,它支撑那个毕业要求,就支撑多少学分。 |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
//某一课程同一课程目标的总学时(支撑某一个课程目标的知识点学时和)
|
|
|
|
|
Double totalXs = v.stream().map(e -> e.getXs()).reduce(Double.valueOf(0), Double::sum); |
|
|
|
|
log.info("课程:" + seCourse.getName() + ",的课程目标:" + v.get(0).getKcmb() + ",的总学时数:" + totalXs); |
|
|
|
|
//某一课程同一课程目标的总学时占比
|
|
|
|
|
Double kcXueshiBilue = ComputeUtils.div2(totalXs, new Double(seCourse.getClasshours())); |
|
|
|
|
log.info("课程:" + seCourse.getName() + ",的课程目标:" + v.get(0).getKcmb() + ",的学时占比数:" + kcXueshiBilue); |
|
|
|
|
//某一课程同一课程目标的总学时占比学分
|
|
|
|
|
double kcXuefen = ComputeUtils.mul(kcXueshiBilue, seCourse.getCredit().doubleValue()); |
|
|
|
|
courseTotalCredit.updateAndGet(v1 -> v1 + kcXuefen); |
|
|
|
|
log.info("课程:" + seCourse.getName() + ",的课程目标:" + v.get(0).getKcmb() + ",的学分数:" + kcXuefen); |
|
|
|
|
}); |
|
|
|
|
log.info("课程:" + seCourse.getName() + ",总学分数:" + courseTotalCredit.get().intValue()); |
|
|
|
|
} |
|
|
|
|
//TODO
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|