발송결과 문자 휴대폰번호 하이픈(-) 추가 => 상세보기2
@38cfd5e82c7e0f7c30703a1660d0181a4eb735d3
--- src/main/resources/egovframework/sqlmap/let/msg/MjonMsgSent_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/msg/MjonMsgSent_SQL_mysql.xml
... | ... | @@ -873,6 +873,8 @@ |
| 873 | 873 |
, MD.FILE_PATH3 AS filePath3 |
| 874 | 874 |
, MD.CALL_FROM AS callFrom |
| 875 | 875 |
, MD.CALL_TO AS callTo |
| 876 |
+ , REGEXP_REPLACE(MD.CALL_FROM, '(02|.{3})(.+)(.{4})', '\\1-\\2-\\3') AS callFromComma
|
|
| 877 |
+ , REGEXP_REPLACE(MD.CALL_TO, '(02|.{3})(.+)(.{4})', '\\1-\\2-\\3') AS callToComma
|
|
| 876 | 878 |
FROM |
| 877 | 879 |
MJ_MSG_GROUP_DATA MGD |
| 878 | 880 |
INNER JOIN MJ_MSG_DATA MD |
--- src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentDetailPop2Ajax.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentDetailPop2Ajax.jsp
... | ... | @@ -22,8 +22,8 @@ |
| 22 | 22 |
<input type="text" id="subject" name="subject" placeholder="${resultMsgDetail.subject}" value="${resultMsgDetail.subject}" readonly> --%>
|
| 23 | 23 |
<div class="rev_pop_middle2 clearfix"> |
| 24 | 24 |
<span>발송일시 : <fmt:formatDate pattern = "yyyy-MM-dd hh:mm" value = "${resultMsgDetail.sentDate}" /></span><br />
|
| 25 |
- <span>발신번호 : ${resultMsgDetail.callFrom}</span><br />
|
|
| 26 |
- <span>받는사람 : ${resultMsgDetail.callTo}</span><br />
|
|
| 25 |
+ <span>발신번호 : ${resultMsgDetail.callFromComma}</span><br />
|
|
| 26 |
+ <span>받는사람 : ${resultMsgDetail.callToComma}</span><br />
|
|
| 27 | 27 |
|
| 28 | 28 |
<c:choose> |
| 29 | 29 |
<c:when test="${resultMsgDetail.msgType == '4'}">
|
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?