itn 2023-10-12
내용없는 단문문자 실패건 표시오류 수정
@b9ca34d39c13b302ea55cb4900ca3cfd559931f8
src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendMsgDetailList.jsp
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendMsgDetailList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendMsgDetailList.jsp
@@ -236,7 +236,14 @@
 							
 							<c:choose>
 								<c:when test="${empty result.smsTxt}">
-									<td title="그림문자">
+									<c:choose>
+										<c:when test="${result.msgType eq '4'}">
+											<td title="내용없음">
+										</c:when>
+										<c:otherwise>
+											<td title="그림문자">
+										</c:otherwise>
+									</c:choose>									
 								</c:when>
 								<c:otherwise>
 									<td title="<c:out value="${result.smsTxt}"/>">
@@ -245,7 +252,14 @@
 								<a href="#" onclick="fn_modify('${result.userData}'); return false;">
 								<c:choose>
 										<c:when test="${empty result.smsTxt}">
-											그림문자
+											<c:choose>
+												<c:when test="${result.msgType eq '4'}">
+													내용없음
+												</c:when>
+												<c:otherwise>
+													그림문자
+												</c:otherwise>
+											</c:choose>	
 										</c:when>
 										<c:otherwise>
 											<c:out value="${result.smsTxt}"/>
Add a comment
List