--- src/main/java/itn/let/kakao/user/sent/service/impl/KakaoSentServiceImpl.java
+++ src/main/java/itn/let/kakao/user/sent/service/impl/KakaoSentServiceImpl.java
... | ... | @@ -34,6 +34,7 @@ |
| 34 | 34 |
|
| 35 | 35 |
import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl; |
| 36 | 36 |
import egovframework.rte.fdl.idgnr.EgovIdGnrService; |
| 37 |
+import itn.com.cmm.util.StringUtil; |
|
| 37 | 38 |
import itn.let.kakao.admin.kakaoAt.service.MjonKakaoATVO; |
| 38 | 39 |
import itn.let.kakao.user.sent.service.KakaoSentDetailVO; |
| 39 | 40 |
import itn.let.kakao.user.sent.service.KakaoSentService; |
... | ... | @@ -141,6 +142,12 @@ |
| 141 | 142 |
|
| 142 | 143 |
List<KakaoSentVO> resultList = new ArrayList<KakaoSentVO>(); |
| 143 | 144 |
|
| 145 |
+ |
|
| 146 |
+ //수신번호 검색 시 번호 포멧 통일 |
|
| 147 |
+ if("4".equals(kakaoSentVO.getSearchCondition()) && StringUtil.isNotEmpty(kakaoSentVO.getSearchKeyword())) {
|
|
| 148 |
+ kakaoSentVO.setSearchKeyword(kakaoSentVO.getSearchKeyword().trim().replace("-", ""));
|
|
| 149 |
+ } |
|
| 150 |
+ |
|
| 144 | 151 |
resultList = kakaoSentDAO.selectAllKakaoSentList_advc(kakaoSentVO); |
| 145 | 152 |
|
| 146 | 153 |
System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
|
--- src/main/java/itn/let/mjo/msgsent/service/impl/MjonMsgSentServiceImpl.java
+++ src/main/java/itn/let/mjo/msgsent/service/impl/MjonMsgSentServiceImpl.java
... | ... | @@ -644,7 +644,7 @@ |
| 644 | 644 |
|
| 645 | 645 |
// log.info("엑셀에 넣을 데이터: [{}]", data[i][1]);
|
| 646 | 646 |
|
| 647 |
- data[i][2] = "H".equals(vo.getSendKind()) ? "WEB" : "API"; |
|
| 647 |
+ data[i][2] = "A".equals(vo.getSendKind()) ? "API" : "WEB"; |
|
| 648 | 648 |
|
| 649 | 649 |
String msgType="단문"; |
| 650 | 650 |
if ("6".equals(vo.getMsgType())) {
|
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?