문자전송리스트 API구분 추가
@244371e1a6eb35fa81871e797079f5e949940498
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
... | ... | @@ -610,6 +610,7 @@ |
| 610 | 610 |
, M.userNm |
| 611 | 611 |
, M.adminSmsNoticeYn |
| 612 | 612 |
, M.callFrom |
| 613 |
+ , M.sendKind |
|
| 613 | 614 |
, M.smsTxt |
| 614 | 615 |
, M.subject |
| 615 | 616 |
, M.msgType |
... | ... | @@ -725,6 +726,7 @@ |
| 725 | 726 |
, A.USER_ID AS userId |
| 726 | 727 |
, LMB.MBER_NM AS userNm |
| 727 | 728 |
, LMB.ADMIN_SMS_NOTICE_YN AS adminSmsNoticeYn |
| 729 |
+ , A.SEND_KIND AS sendKind |
|
| 728 | 730 |
, A.CALL_FROM AS callFrom |
| 729 | 731 |
, A.SMS_TXT AS smsTxt |
| 730 | 732 |
, A.SUBJECT AS subject |
... | ... | @@ -785,7 +787,15 @@ |
| 785 | 787 |
WHEN RESERVE_YN = 'Y' |
| 786 | 788 |
THEN (REQ_DATE <= NOW() OR (IFNULL(DELAY_YN, 'N') = 'Y' AND IFNULL(DELAY_COMPLETE_YN, 'N') = 'N')) |
| 787 | 789 |
END |
| 788 |
- ]]> |
|
| 790 |
+ ]]> |
|
| 791 |
+ <isNotEmpty property="sendKind"> |
|
| 792 |
+ <isEqual property="sendKind" compareValue="H"> |
|
| 793 |
+ AND A.SEND_KIND = 'H' |
|
| 794 |
+ </isEqual> |
|
| 795 |
+ <isEqual property="sendKind" compareValue="A"> |
|
| 796 |
+ AND A.SEND_KIND = 'A' |
|
| 797 |
+ </isEqual> |
|
| 798 |
+ </isNotEmpty> |
|
| 789 | 799 |
<isNotEmpty property="searchKeyword"> |
| 790 | 800 |
<isEqual property="searchCondition" compareValue="" > |
| 791 | 801 |
AND ( |
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/ReserveNumberList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/ReserveNumberList.jsp
... | ... | @@ -359,7 +359,7 @@ |
| 359 | 359 |
<option value="" <c:if test="${empty searchVO.searchAdminSmsNoticeYn }">selected="selected"</c:if> >법인폰 알림여부</option>
|
| 360 | 360 |
<option value="Y" <c:if test="${searchVO.searchAdminSmsNoticeYn == 'Y'}">selected="selected"</c:if>>온(On)</option>
|
| 361 | 361 |
<option value="N" <c:if test="${searchVO.searchAdminSmsNoticeYn == 'N'}">selected="selected"</c:if>>오프(Off)</option>
|
| 362 |
- </select> |
|
| 362 |
+ </select> |
|
| 363 | 363 |
<select id="sendKind" name="sendKind" onchange="fn_search();"> |
| 364 | 364 |
<option value=""<c:if test="${searchVO.sendKind eq ''}">selected="selected"</c:if>>발송방식 전체</option>
|
| 365 | 365 |
<option value="H"<c:if test="${searchVO.sendKind eq 'H'}">selected="selected"</c:if>>WEB</option>
|
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendMsgList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendMsgList.jsp
... | ... | @@ -430,8 +430,12 @@ |
| 430 | 430 |
<option value="" <c:if test="${empty searchVO.searchAdminSmsNoticeYn }">selected="selected"</c:if> >법인폰 알림여부</option>
|
| 431 | 431 |
<option value="Y" <c:if test="${searchVO.searchAdminSmsNoticeYn == 'Y'}">selected="selected"</c:if>>온(On)</option>
|
| 432 | 432 |
<option value="N" <c:if test="${searchVO.searchAdminSmsNoticeYn == 'N'}">selected="selected"</c:if>>오프(Off)</option>
|
| 433 |
- </select> |
|
| 434 |
- |
|
| 433 |
+ </select> |
|
| 434 |
+ <select id="sendKind" name="sendKind" onchange="fn_search();"> |
|
| 435 |
+ <option value=""<c:if test="${searchVO.sendKind eq ''}">selected="selected"</c:if>>발송방식 전체</option>
|
|
| 436 |
+ <option value="H"<c:if test="${searchVO.sendKind eq 'H'}">selected="selected"</c:if>>WEB</option>
|
|
| 437 |
+ <option value="A"<c:if test="${searchVO.sendKind eq 'A'}">selected="selected"</c:if>>API</option>
|
|
| 438 |
+ </select> |
|
| 435 | 439 |
<input id="searchKeyword" name="searchKeyword" class="recentSearch" type="text" value="<c:out value='${searchVO.searchKeyword}'/>" size="15" title="검색" maxlength="100" />
|
| 436 | 440 |
<input type="button" class="btnType1" value="검색" onclick="fn_search(); return false;"> |
| 437 | 441 |
|
... | ... | @@ -479,6 +483,7 @@ |
| 479 | 483 |
<th>예약<input type="button" class="sort sortBtn" id="sort_reserveYn"></th> |
| 480 | 484 |
<th>내용<input type="button" class="sort sortBtn" id="sort_smsTxt"></th> |
| 481 | 485 |
<th>타입<input type="button" class="sort sortBtn" id="sort_msgTypeTxt"></th> |
| 486 |
+ <th>방식<input type="button" class="sort sortBtn" id="sort_sendKind"></th> |
|
| 482 | 487 |
<!-- <th>전송사<input type="button" class="sort sortBtn" id="sort_agentCodeTxt"></th> --> |
| 483 | 488 |
<!-- <th>통신사<input type="button" class="sort sortBtn" id="sort_rsltNet"></th> --> |
| 484 | 489 |
</tr> |
... | ... | @@ -643,6 +648,16 @@ |
| 643 | 648 |
</c:otherwise> |
| 644 | 649 |
</c:choose> |
| 645 | 650 |
</td> |
| 651 |
+ <td <c:if test="${result.smishingYn eq 'Y'}">class="smishing"</c:if>>
|
|
| 652 |
+ <c:choose> |
|
| 653 |
+ <c:when test="${result.sendKind eq 'A'}">
|
|
| 654 |
+ API |
|
| 655 |
+ </c:when> |
|
| 656 |
+ <c:when test="${result.sendKind eq 'H'}">
|
|
| 657 |
+ WEB |
|
| 658 |
+ </c:when> |
|
| 659 |
+ </c:choose> |
|
| 660 |
+ </td> |
|
| 646 | 661 |
<%-- <td><c:out value="${result.conectMthdTxt}"/></td> --%>
|
| 647 | 662 |
<%-- <td <c:if test="${result.smishingYn eq 'Y'}">class="smishing"</c:if>>
|
| 648 | 663 |
<c:out value="${result.agentCodeTxt}"/>
|
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?