--- src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
+++ src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
... | ... | @@ -1798,6 +1798,14 @@ |
| 1798 | 1798 |
searchVO.setSearchSortAuthYN("Y");
|
| 1799 | 1799 |
} |
| 1800 | 1800 |
|
| 1801 |
+ |
|
| 1802 |
+ if("N".equals(searchVO.getSearchCondition2())) {
|
|
| 1803 |
+ searchVO.setPhmType("03"); //거부조회
|
|
| 1804 |
+ }else {
|
|
| 1805 |
+ searchVO.setPhmType("01"); //발신조회
|
|
| 1806 |
+ } |
|
| 1807 |
+ |
|
| 1808 |
+ |
|
| 1801 | 1809 |
if(pattern.equals("/uss/ion/msg/SendNumberList.do") || pattern.equals("/web/msg/SendNumberList.do")) {
|
| 1802 | 1810 |
// searchVO.setPhmType("01"); //발신조회
|
| 1803 | 1811 |
}else {
|
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml
... | ... | @@ -1682,7 +1682,9 @@ |
| 1682 | 1682 |
</isEqual> |
| 1683 | 1683 |
</isNotEmpty> |
| 1684 | 1684 |
<isNotEmpty property="searchCondition2"> |
| 1685 |
+ <isNotEqual property="searchCondition2" compareValue="N"> |
|
| 1685 | 1686 |
AND A.AUTH_YN = #searchCondition2# /** 인증여부 */ |
| 1687 |
+ </isNotEqual> |
|
| 1686 | 1688 |
</isNotEmpty> |
| 1687 | 1689 |
<isNotEmpty property="searchCondition3"> |
| 1688 | 1690 |
AND A.PHM_AUTH_TYPE = #searchCondition3# |
--- src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendNumberList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/ion/msg/SendNumberList.jsp
... | ... | @@ -251,6 +251,7 @@ |
| 251 | 251 |
<option value="Y" <c:if test="${searchVO.searchCondition2 == 'Y'}">selected="selected"</c:if>>인증완료</option>
|
| 252 | 252 |
<option value="H" <c:if test="${searchVO.searchCondition2 == 'H'}">selected="selected"</c:if>>인증요청</option>
|
| 253 | 253 |
<option value="C" <c:if test="${searchVO.searchCondition2 == 'C'}">selected="selected"</c:if>>반려</option>
|
| 254 |
+ <option value="N" <c:if test="${searchVO.searchCondition2 == 'N'}">selected="selected"</c:if>>발신번호 차단</option>
|
|
| 254 | 255 |
</select> |
| 255 | 256 |
<ec:select codeId="ITN027" name="searchCondition3" id="searchCondition3" css="class='select'" selectedValue="${searchVO.searchCondition3}" defaultValue="" defaultText="인증타입(전체)" />
|
| 256 | 257 |
<select name="searchCondition" class="select" title="검색조건 선택"> |
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?