이지우 - 알림톡 전송리스트 상세화면에 발송결과 검색 조건 추가
This commit is contained in:
parent
2d8edc7e6f
commit
8141148bd1
@ -3074,6 +3074,17 @@
|
||||
AND DATE_FORMAT(REGDATE, '%Y-%m-%d') <= DATE_FORMAT(#ntceEndde#, '%Y-%m-%d')
|
||||
]]>
|
||||
</isNotEmpty>
|
||||
<isNotEmpty property="resultCodeTxt">
|
||||
<isEqual property="resultCodeTxt" compareValue="S">
|
||||
AND M.result = 'S'
|
||||
</isEqual>
|
||||
<isEqual property="resultCodeTxt" compareValue="W">
|
||||
AND M.result = 'W'
|
||||
</isEqual>
|
||||
<isEqual property="resultCodeTxt" compareValue="F">
|
||||
AND M.result = 'F'
|
||||
</isEqual>
|
||||
</isNotEmpty>
|
||||
ORDER BY 1=1
|
||||
<isNotEmpty property="searchSortCnd">
|
||||
<isEqual property="searchSortCnd" compareValue="curState">
|
||||
|
||||
@ -207,6 +207,13 @@ function fnSelectMber(mberId) {
|
||||
<option value="" <c:if test="${empty searchVO.msgType }">selected="selected"</c:if> >메시지 타입(전체)</option>
|
||||
<option value="8" <c:if test="${searchVO.msgType == '8'}">selected="selected"</c:if>>알림톡</option>
|
||||
<option value="9" <c:if test="${searchVO.msgType == '9'}">selected="selected"</c:if>>친구톡</option>
|
||||
</select>
|
||||
|
||||
<select name="resultCodeTxt" id="resultCodeTxt" title="발송결과">
|
||||
<option value="" <c:if test="${empty searchVO.resultCodeTxt}">selected="selected"</c:if> >발송결과(전체)</option>
|
||||
<option value="S" <c:if test="${searchVO.resultCodeTxt == 'S'}">selected="selected"</c:if>>발송성공</option>
|
||||
<option value="W" <c:if test="${searchVO.resultCodeTxt == 'W'}">selected="selected"</c:if>>발송대기</option>
|
||||
<option value="F" <c:if test="${searchVO.resultCodeTxt == 'F'}">selected="selected"</c:if>>발송실패</option>
|
||||
</select>
|
||||
|
||||
<input id="searchKeyword" name="searchKeyword" class="recentSearch" type="text" value="<c:out value='${searchVO.searchKeyword}'/>" size="15" title="검색" maxlength="100" />
|
||||
|
||||
Loading…
Reference in New Issue
Block a user