문자관리 > 알림 미처리 문자 조회 리스트 화면 변경 - 회원상태 검색 옵셕 추가 - 리스트 내용 정보 컬럼 변경(회원상태 컬럼 삭제)
- 회원상태 검색 옵셕 추가 - 리스트 내용 정보 컬럼 변경(회원상태 컬럼 삭제)
@c041820148054a1ea708cb0589c34551b237a18c
--- src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
+++ src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
... | ... | @@ -1305,7 +1305,7 @@ |
| 1305 | 1305 |
model.addAttribute("resultMsgCodeList", resultMsgCodeList);
|
| 1306 | 1306 |
|
| 1307 | 1307 |
paginationInfo.setTotalRecordCount(resultList.size() > 0 ? ((MjonMsgVO)resultList.get(0)).getTotCnt() : 0); |
| 1308 |
- model.addAttribute("paginationInfo", paginationInfo);
|
|
| 1308 |
+ model.addAttribute("paginationInfo", paginationInfo);
|
|
| 1309 | 1309 |
|
| 1310 | 1310 |
return "/uss/ion/msg/SendHoliMsgList"; |
| 1311 | 1311 |
|
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
... | ... | @@ -7800,6 +7800,17 @@ |
| 7800 | 7800 |
AND mmgd.SMS_TXT LIKE CONCAT ('%', #searchKeyword#,'%')
|
| 7801 | 7801 |
</isEqual> |
| 7802 | 7802 |
</isNotEmpty> |
| 7803 |
+ <isNotEmpty property="mberSttus"> |
|
| 7804 |
+ <isEqual property="mberSttus" compareValue="Y"> |
|
| 7805 |
+ AND lmb.MBER_STTUS = 'Y' |
|
| 7806 |
+ </isEqual> |
|
| 7807 |
+ <isEqual property="mberSttus" compareValue="N"> |
|
| 7808 |
+ AND lmb.MBER_STTUS = 'N' |
|
| 7809 |
+ </isEqual> |
|
| 7810 |
+ <isEqual property="mberSttus" compareValue="B"> |
|
| 7811 |
+ AND lmb.MBER_STTUS = 'B' |
|
| 7812 |
+ </isEqual> |
|
| 7813 |
+ </isNotEmpty> |
|
| 7803 | 7814 |
<isNotEmpty property="searchCondition3"> |
| 7804 | 7815 |
<isEqual property="searchCondition3" compareValue="1"> |
| 7805 | 7816 |
AND mmgd.MSG_TYPE = '4' |
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendHoliMsgList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendHoliMsgList.jsp
... | ... | @@ -411,6 +411,13 @@ |
| 411 | 411 |
</a> |
| 412 | 412 |
</div> |
| 413 | 413 |
<br /><br /> |
| 414 |
+ <select name="mberSttus" class="select" title="회원상태(전체)" onchange="fn_search();"> |
|
| 415 |
+ <option value="" <c:if test="${searchVO.mberSttus == ''}">selected="selected"</c:if>>회원상태(전체)</option>
|
|
| 416 |
+ <option value="Y" <c:if test="${searchVO.mberSttus == 'Y'}">selected="selected"</c:if>>일반</option>
|
|
| 417 |
+ <option value="N" <c:if test="${searchVO.mberSttus == 'N'}">selected="selected"</c:if>>탈퇴</option>
|
|
| 418 |
+ <option value="B" <c:if test="${searchVO.mberSttus == 'B'}">selected="selected"</c:if>>이용정지</option>
|
|
| 419 |
+ </select> |
|
| 420 |
+ |
|
| 414 | 421 |
<select name="searchCondition" class="select" title="검색조건 선택"> |
| 415 | 422 |
<option value="" <c:if test="${searchVO.searchCondition == ''}">selected="selected"</c:if>>ID/내용/발신번호(전체)</option>
|
| 416 | 423 |
<option value="1" <c:if test="${searchVO.searchCondition == '1'}">selected="selected"</c:if>>사용자ID</option>
|
... | ... | @@ -418,9 +425,6 @@ |
| 418 | 425 |
<option value="3" <c:if test="${searchVO.searchCondition == '3'}">selected="selected"</c:if>>전송내용</option>
|
| 419 | 426 |
</select> |
| 420 | 427 |
|
| 421 |
- <%-- <ec:select codeId="ITN019" name="searchCondition2" id="searchCondition2" css="class='select'" selectedValue="${searchVO.searchCondition2}"
|
|
| 422 |
- defaultValue="" defaultText="전송사(전체)" /> --%> |
|
| 423 |
- |
|
| 424 | 428 |
<select name="searchCondition3" class="select" title="메세지타입(전체)" onchange="fn_search();"> |
| 425 | 429 |
<option value="" <c:if test="${searchVO.searchCondition3 == ''}">selected="selected"</c:if>>메세지타입(전체)</option>
|
| 426 | 430 |
<option value="1" <c:if test="${searchVO.searchCondition3 == '1'}">selected="selected"</c:if>>단문</option>
|
... | ... | @@ -428,7 +432,6 @@ |
| 428 | 432 |
<option value="3" <c:if test="${searchVO.searchCondition3 == '3'}">selected="selected"</c:if>>그림</option>
|
| 429 | 433 |
<option value="8" <c:if test="${searchVO.searchCondition3 == '8'}">selected="selected"</c:if>>알림톡</option>
|
| 430 | 434 |
<option value="9" <c:if test="${searchVO.searchCondition3 == '9'}">selected="selected"</c:if>>친구톡</option>
|
| 431 |
- |
|
| 432 | 435 |
</select> |
| 433 | 436 |
|
| 434 | 437 |
<select name="cancelResultYn" id="cancelResultYn" title="처리상태" onchange="fn_search();"> |
... | ... | @@ -468,7 +471,7 @@ |
| 468 | 471 |
<col style="width: 3%"> |
| 469 | 472 |
<col style="width: 5%"> |
| 470 | 473 |
<col style="width: 15%"> |
| 471 |
- <col style="width: 5%"> |
|
| 474 |
+ <%-- <col style="width: 5%"> --%> |
|
| 472 | 475 |
<col style="width: 7%"> |
| 473 | 476 |
<col style="width: 8%"> |
| 474 | 477 |
<col style="width: 10%"> |
... | ... | @@ -487,16 +490,16 @@ |
| 487 | 490 |
<th><input type="checkbox" name="checkAll" id="checkAll" onclick="fnCheckAll();" /><label for="checkAll"></label></th> |
| 488 | 491 |
<th>번호<input type="button" class="sort sortBtn" id="sort_msgGroupId"></th> |
| 489 | 492 |
<th>아이디<input type="button" class="sort sortBtn" id="sort_userId"></th> |
| 490 |
- <th>회원상태<input type="button" class="sort sortBtn" id="sort_adminSmsNoticeYn"></th> |
|
| 493 |
+ <!-- <th>회원상태<input type="button" class="sort sortBtn" id="sort_adminSmsNoticeYn"></th> --> |
|
| 491 | 494 |
<th>발신번호<input type="button" class="sort sortBtn" id="sort_callFrom"></th> |
| 492 | 495 |
<th>발송건수<input type="button" class="sort sortBtn" id="sort_msgGroupCnt"></th> |
| 493 | 496 |
<th>요청시간<input type="button" class="sort sortBtn" id="sort_reqDate"></th> |
| 494 | 497 |
<th>예약여부<input type="button" class="sort sortBtn" id="sort_reserveYn"></th> |
| 495 | 498 |
<th>내용<input type="button" class="sort sortBtn" id="sort_smsTxt"></th> |
| 496 | 499 |
<th>타입<input type="button" class="sort sortBtn" id="sort_msgTypeTxt"></th> |
| 497 |
- <th>방식<input type="button" class="sort sortBtn" id="sort_sendKind"></th> |
|
| 498 |
- <th>등록일자<input type="button" class="sort sortBtn" id="sort_frstRegistPnttm"></th> |
|
| 499 | 500 |
<th>처리상태<input type="button" class="sort sortBtn" id="sort_cancelResultYn"></th> |
| 501 |
+ <th>등록일자<input type="button" class="sort sortBtn" id="sort_frstRegistPnttm"></th> |
|
| 502 |
+ <th>방식<input type="button" class="sort sortBtn" id="sort_sendKind"></th> |
|
| 500 | 503 |
<!-- <th>예약상태<input type="button" class="sort sortBtn" id="sort_conectMthdTxt"></th> --> |
| 501 | 504 |
<!-- |
| 502 | 505 |
<th>취소일자<input type="button" class="sort sortBtn" id="sort_agentCodeTxt"></th> |
... | ... | @@ -524,7 +527,7 @@ |
| 524 | 527 |
(<c:out value="${result.userNm}"/>)
|
| 525 | 528 |
</a> |
| 526 | 529 |
</td> |
| 527 |
- <td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
|
| 530 |
+ <%-- <td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
|
| 528 | 531 |
<c:choose> |
| 529 | 532 |
<c:when test="${result.mberSttus eq 'Y'}">
|
| 530 | 533 |
일반 |
... | ... | @@ -539,7 +542,7 @@ |
| 539 | 542 |
기타(${result.mberSttus})
|
| 540 | 543 |
</c:otherwise> |
| 541 | 544 |
</c:choose> |
| 542 |
- </td> |
|
| 545 |
+ </td> --%> |
|
| 543 | 546 |
<td onclick="fn_detail_list('${result.msgGroupId}'); return false;" <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if><c:if test="${result.smishingYn eq 'N'}">style="cursor:pointer;"</c:if>>
|
| 544 | 547 |
<a href="#" onclick="fn_detail_list('${result.msgGroupId}'); return false;">
|
| 545 | 548 |
<c:out value="${result.callFrom}"/>
|
... | ... | @@ -639,19 +642,6 @@ |
| 639 | 642 |
</td> |
| 640 | 643 |
<td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
| 641 | 644 |
<c:choose> |
| 642 |
- <c:when test="${result.sendKind eq 'A'}">
|
|
| 643 |
- API |
|
| 644 |
- </c:when> |
|
| 645 |
- <c:when test="${result.sendKind eq 'H'}">
|
|
| 646 |
- WEB |
|
| 647 |
- </c:when> |
|
| 648 |
- </c:choose> |
|
| 649 |
- </td> |
|
| 650 |
- <td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
|
| 651 |
- <c:out value="${result.frstRegistPnttm}"/>
|
|
| 652 |
- </td> |
|
| 653 |
- <td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
|
| 654 |
- <c:choose> |
|
| 655 | 645 |
<c:when test="${result.cancelResultYn eq 'Y'}">
|
| 656 | 646 |
처리완료 |
| 657 | 647 |
</c:when> |
... | ... | @@ -667,10 +657,23 @@ |
| 667 | 657 |
|
| 668 | 658 |
</c:choose> |
| 669 | 659 |
</td> |
| 660 |
+ <td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
|
| 661 |
+ <c:out value="${result.frstRegistPnttm}"/>
|
|
| 662 |
+ </td> |
|
| 663 |
+ <td <c:if test="${result.smishingYn eq 'Y'}">style="color: #0000FF; cursor:pointer;"</c:if>>
|
|
| 664 |
+ <c:choose> |
|
| 665 |
+ <c:when test="${result.sendKind eq 'A'}">
|
|
| 666 |
+ API |
|
| 667 |
+ </c:when> |
|
| 668 |
+ <c:when test="${result.sendKind eq 'H'}">
|
|
| 669 |
+ WEB |
|
| 670 |
+ </c:when> |
|
| 671 |
+ </c:choose> |
|
| 672 |
+ </td> |
|
| 670 | 673 |
</tr> |
| 671 | 674 |
</c:forEach> |
| 672 | 675 |
<c:if test="${empty resultList}">
|
| 673 |
- <tr><td colspan="13"><spring:message code="common.nodata.msg" /></td></tr> |
|
| 676 |
+ <tr><td colspan="11"><spring:message code="common.nodata.msg" /></td></tr> |
|
| 674 | 677 |
</c:if> |
| 675 | 678 |
</tbody> |
| 676 | 679 |
</table> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?