From eb048c01b8734cc765ab744b128d0edc18f20beb Mon Sep 17 00:00:00 2001 From: hjl <1657978663@qq.com> Date: 星期五, 21 六月 2024 11:56:12 +0800 Subject: [PATCH] fix: 学习端bug --- ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/service/impl/TStudyServiceImpl.java | 74 ++++++++++++++++++++++++++++++++++--- 1 files changed, 68 insertions(+), 6 deletions(-) diff --git a/ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/service/impl/TStudyServiceImpl.java b/ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/service/impl/TStudyServiceImpl.java index 5e15dec..a0c4e65 100644 --- a/ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/service/impl/TStudyServiceImpl.java +++ b/ruoyi-service/ruoyi-study/src/main/java/com/ruoyi/study/service/impl/TStudyServiceImpl.java @@ -288,7 +288,7 @@ for (int i = 0; i < Constants.THREE; i++) { String id = subjectIds.get(i); if (id.startsWith("-")) { - id = id.replace("-",""); + id = id.replace("-", ""); subjectLists.add(subjectService.getById(id)); } } @@ -302,11 +302,11 @@ for (int i = Constants.THREE; i < Constants.FIVE; i++) { String id = subjectIds.get(i); if (id.startsWith("-")) { - id = id.replace("-",""); + id = id.replace("-", ""); subjectLists.add(subjectService.getById(id)); } } - subjectLists.add(subjectService.getById(subjectIds.get(subjectIds.size() - 1).replace("-",""))); + subjectLists.add(subjectService.getById(subjectIds.get(subjectIds.size() - 1).replace("-", ""))); subjectList.add(subjectLists); } return new StudyInductionResultVO(learnStudy, subjectList); @@ -359,11 +359,11 @@ copyProperties(two1, twoVO); // 判断第一组题目的问题题目及回答题目,哪个是答案 if (Constants.ZERO.equals(one.getIsAnswer())) { - oneVO.setIsQuestion(0); - twoVO.setIsQuestion(1); - } else { oneVO.setIsQuestion(1); twoVO.setIsQuestion(0); + } else { + oneVO.setIsQuestion(0); + twoVO.setIsQuestion(1); } voList.add(oneVO); voList.add(twoVO); @@ -486,4 +486,66 @@ return (int) (sum * ((double) accuracy / 100)); } + @Override + public int residueWeek(TUserStudy studyRecord, List<TStudy> studyList) { + // 已学习周目 + int residueWeek = 0; + // 已学习到的周目 + Integer studyWeek = studyRecord.getWeek(); + // 根据季度分组封装 + Map<Integer, List<TStudy>> studyMap = new HashMap<>(8); + for (TStudy study : studyList) { + Integer quarter = study.getQuarter(); + List<TStudy> itemList = studyMap.get(quarter); + if (null == itemList) { + itemList = new ArrayList<>(); + } + itemList.add(study); + studyMap.put(quarter, itemList); + } + // 顺序排序 + Map<Integer, List<TStudy>> itemMap = new HashMap<>(8); + List<Integer> keyList = new ArrayList<>(); + for (Map.Entry<Integer, List<TStudy>> map : studyMap.entrySet()) { + Integer key = map.getKey(); + keyList.add(key); + } + Collections.sort(keyList); + for (Integer key : keyList) { + List<TStudy> itemList = studyMap.get(key); + itemMap.put(key, itemList); + } + // 计算已学习周目 + boolean v = false; + for (Map.Entry<Integer, List<TStudy>> map : itemMap.entrySet()) { + List<TStudy> list = map.getValue(); + for (int i = 0; i < list.size(); i++) { + TStudy item = list.get(i); + if (item.getWeek().equals(studyWeek)) { + Integer listen = studyRecord.getListen(); + Integer answer = studyRecord.getAnswer(); + Integer look = studyRecord.getLook(); + Integer induction = studyRecord.getInduction(); + Integer pair = studyRecord.getPair(); + Integer gameDifficulty = studyRecord.getGameDifficulty(); + // 听音选图、看图选音、音图相配、有问有答、归纳排除的进度是否 100%,并且超级听力的游戏难度是否为2 + boolean isStudy = Constants.ONE_HUNDRED.equals(listen) && Constants.ONE_HUNDRED.equals(look) && + Constants.ONE_HUNDRED.equals(induction) && Constants.ONE_HUNDRED.equals(pair) && + Constants.ONE_HUNDRED.equals(answer) && Constants.TWO.equals(gameDifficulty); + if (isStudy) { + residueWeek++; + } + v = true; + break; + } else { + residueWeek++; + } + } + if (v) { + break; + } + } + return studyList.size() - residueWeek; + } + } -- Gitblit v1.7.1