수신번호 하이픈 제거
This commit is contained in:
parent
9ee68ddb1b
commit
b1a75f98ec
@ -34,6 +34,7 @@ import org.springframework.stereotype.Service;
|
||||
|
||||
import egovframework.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
||||
import egovframework.rte.fdl.idgnr.EgovIdGnrService;
|
||||
import itn.com.cmm.util.StringUtil;
|
||||
import itn.let.kakao.admin.kakaoAt.service.MjonKakaoATVO;
|
||||
import itn.let.kakao.user.sent.service.KakaoSentDetailVO;
|
||||
import itn.let.kakao.user.sent.service.KakaoSentService;
|
||||
@ -141,6 +142,12 @@ public class KakaoSentServiceImpl extends EgovAbstractServiceImpl implements Ka
|
||||
|
||||
List<KakaoSentVO> resultList = new ArrayList<KakaoSentVO>();
|
||||
|
||||
|
||||
//수신번호 검색 시 번호 포멧 통일
|
||||
if("4".equals(kakaoSentVO.getSearchCondition()) && StringUtil.isNotEmpty(kakaoSentVO.getSearchKeyword())) {
|
||||
kakaoSentVO.setSearchKeyword(kakaoSentVO.getSearchKeyword().trim().replace("-", ""));
|
||||
}
|
||||
|
||||
resultList = kakaoSentDAO.selectAllKakaoSentList_advc(kakaoSentVO);
|
||||
|
||||
System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
|
||||
|
||||
@ -644,7 +644,7 @@ public class MjonMsgSentServiceImpl extends EgovAbstractServiceImpl implements
|
||||
|
||||
// log.info("엑셀에 넣을 데이터: [{}]", data[i][1]);
|
||||
|
||||
data[i][2] = "H".equals(vo.getSendKind()) ? "WEB" : "API";
|
||||
data[i][2] = "A".equals(vo.getSendKind()) ? "API" : "WEB";
|
||||
|
||||
String msgType="단문";
|
||||
if ("6".equals(vo.getMsgType())) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user