소스 검색

在成绩查询页面 未上传或者缺考的情况都判断为缺考情况

nikang 6 년 전
부모
커밋
e1fa6e9121
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      stmms-web/src/main/webapp/WEB-INF/views/modules/exam/scoreList.jsp

+ 2 - 1
stmms-web/src/main/webapp/WEB-INF/views/modules/exam/scoreList.jsp

@@ -118,7 +118,8 @@
 				<td>${student.subjectiveScoreString}</td>
 				<td>${student.totalScoreString}</td>
 				<td>
-					<c:if test="${student.absent == true || student.absent == null}">
+					<!--在成绩查询页面 未上传或者缺考的情况都判断为缺考情况 -->
+					<c:if test="${student.absent == true || student.upload == false }">
 						缺考
 					</c:if>
 				</td>