관리자 회원정보 팝업 > 최근문자전송 내역의 예약문자 더보기 팝업에서 예약문자에 대한 딜레이 문자내역 표시 수정
- 딜레이건이 아니거나 딜레이건이지만 처리완료 건에 대한 예약문자 내역만 보이도록 처리 - DELAY_YN='N' AND DELAY_COMPLETE_YN='N' OR DELAY_YN='Y' AND DELAY_COMPLETE_YN='Y' 인 조건 추가
This commit is contained in:
parent
07d00e7ea5
commit
4e2f4b87a1
@ -4659,6 +4659,19 @@
|
||||
AND MGD.REQ_DATE > now()
|
||||
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>
|
||||
</isNotEmpty>
|
||||
|
||||
|
||||
@ -3516,7 +3516,7 @@ function fnMberExceptSpamYn(){
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:choose>
|
||||
<c:when test="${not empty mjonMsgSentList}">
|
||||
<c:when test="${not empty mjonMsgSentList2}">
|
||||
<c:forEach var="mjonMsgSentList" items="${mjonMsgSentList2}" varStatus="status">
|
||||
<tr>
|
||||
<td><c:out value="${status.count}"/></td>
|
||||
@ -3664,7 +3664,7 @@ function fnMberExceptSpamYn(){
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<tr>
|
||||
<td colspan="9">문자 발송 내역이 없습니다.</td>
|
||||
<td colspan="9">예약 문자 내역이 없습니다.</td>
|
||||
</tr>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
@ -3868,7 +3868,7 @@ function fnMberExceptSpamYn(){
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<tr>
|
||||
<td colspan="9">문자 발송 내역이 없습니다.</td>
|
||||
<td colspan="9">문자 지연 내역이 없습니다.</td>
|
||||
</tr>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user