|
@@ -229,7 +229,7 @@ public class ExaminationBasicServiceImpl extends BaseServiceImpl<Long, Examinati
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void closeExam(Integer examId, String reason) {
|
|
|
+ public void closeExam(Integer organId, Integer examId, String reason) {
|
|
|
if (Objects.isNull(examId)) {
|
|
|
throw new BizException("请指定考级项目");
|
|
|
}
|
|
@@ -238,7 +238,7 @@ public class ExaminationBasicServiceImpl extends BaseServiceImpl<Long, Examinati
|
|
|
throw new BizException("考级项目不存在");
|
|
|
}
|
|
|
|
|
|
-// List<Integer> childOrganIds = organizationService.getChildOrganIds(queryInfo.getOrganId(), true);
|
|
|
+ List<Integer> childOrganIds = organizationService.getChildOrganIds(organId, true);
|
|
|
|
|
|
if (StringUtils.isBlank(reason)) {
|
|
|
reason = "后台手动关闭";
|