관리자 회원정보 팝업 > 최근문자전송 내역의 예약문자 더보기 팝업에서 예약문자에 대한 딜레이 문자내역 표시 수정

- 딜레이건이 아니거나 딜레이건이지만 처리완료 건에 대한 예약문자 내역만 보이도록 처리
 - DELAY_YN='N' AND DELAY_COMPLETE_YN='N' OR DELAY_YN='Y' AND
DELAY_COMPLETE_YN='Y' 인 조건 추가
This commit is contained in:
woo 2023-07-03 17:09:23 +09:00
parent 07d00e7ea5
commit 4e2f4b87a1
2 changed files with 16 additions and 3 deletions

View File

@ -4659,6 +4659,19 @@
AND MGD.REQ_DATE > now() AND MGD.REQ_DATE > now()
AND MGD.RESERVE_YN = 'Y' AND MGD.RESERVE_YN = 'Y'
]]> ]]>
/**30분 지연이 아니거나 지연 처리가 완료된 건들 불러오기*/
AND
(
(
MGD.DELAY_YN = 'N'
AND MGD.DELAY_COMPLETE_YN = 'N'
)
OR
(
MGD.DELAY_YN = 'Y'
AND MGD.DELAY_COMPLETE_YN = 'Y'
)
)
</isEqual> </isEqual>
</isNotEmpty> </isNotEmpty>

View File

@ -3516,7 +3516,7 @@ function fnMberExceptSpamYn(){
</thead> </thead>
<tbody> <tbody>
<c:choose> <c:choose>
<c:when test="${not empty mjonMsgSentList}"> <c:when test="${not empty mjonMsgSentList2}">
<c:forEach var="mjonMsgSentList" items="${mjonMsgSentList2}" varStatus="status"> <c:forEach var="mjonMsgSentList" items="${mjonMsgSentList2}" varStatus="status">
<tr> <tr>
<td><c:out value="${status.count}"/></td> <td><c:out value="${status.count}"/></td>
@ -3664,7 +3664,7 @@ function fnMberExceptSpamYn(){
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<tr> <tr>
<td colspan="9">문자 발송 내역이 없습니다.</td> <td colspan="9">예약 문자 내역이 없습니다.</td>
</tr> </tr>
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>
@ -3868,7 +3868,7 @@ function fnMberExceptSpamYn(){
</c:when> </c:when>
<c:otherwise> <c:otherwise>
<tr> <tr>
<td colspan="9">문자 발송 내역이 없습니다.</td> <td colspan="9">문자 지연 내역이 없습니다.</td>
</tr> </tr>
</c:otherwise> </c:otherwise>
</c:choose> </c:choose>