瀏覽代碼

3.2.3 题卡选择课程下所有题卡

xiaofei 2 年之前
父節點
當前提交
8608223a2a

+ 1 - 1
distributed-print-business/src/main/java/com/qmth/distributed/print/business/service/impl/ExamCardServiceImpl.java

@@ -517,7 +517,7 @@ public class ExamCardServiceImpl extends ServiceImpl<ExamCardMapper, ExamCard> i
         if (examCard == null) {
             throw ExceptionResultEnum.ERROR.exception("题卡不存在");
         }
-        if (!courseCode.equals(examCard.getCourseCode())) {
+        if (CardTypeEnum.CUSTOM.equals(examCard.getType()) && !courseCode.equals(examCard.getCourseCode())) {
             throw ExceptionResultEnum.ERROR.exception("复制的题卡不属于当前课程,无法复制");
         }