내용없는 단문문자 실패건 표시오류 수정

This commit is contained in:
itn 2023-10-12 11:01:28 +09:00
parent 074d877c8b
commit b9ca34d39c

View File

@ -236,7 +236,14 @@ function goList() {
<c:choose> <c:choose>
<c:when test="${empty result.smsTxt}"> <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:when>
<c:otherwise> <c:otherwise>
<td title="<c:out value="${result.smsTxt}"/>"> <td title="<c:out value="${result.smsTxt}"/>">
@ -245,7 +252,14 @@ function goList() {
<a href="#" onclick="fn_modify('${result.userData}'); return false;"> <a href="#" onclick="fn_modify('${result.userData}'); return false;">
<c:choose> <c:choose>
<c:when test="${empty result.smsTxt}"> <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:when>
<c:otherwise> <c:otherwise>
<c:out value="${result.smsTxt}"/> <c:out value="${result.smsTxt}"/>