예약관리 알림톡 휴대폰번호 하이픈(-) 추가
This commit is contained in:
parent
cf5560d28e
commit
681b96dd04
@ -1878,7 +1878,7 @@ public class MjonReservMsgController {
|
||||
}
|
||||
if(j==5) cell.setCellValue((resultAllSentList.get(i)).getSmsTxt()); //내용
|
||||
if(j==6) cell.setCellValue((resultAllSentList.get(i)).getMsgGroupCnt()); //발송건수
|
||||
if(j==7) cell.setCellValue((resultAllSentList.get(i)).getCallFrom()); //발신번호
|
||||
if(j==7) cell.setCellValue((resultAllSentList.get(i)).getCallFromComma()); //발신번호
|
||||
if(j==8) cell.setCellValue((resultAllSentList.get(i)).getTotPrice()); //발신번호
|
||||
|
||||
//발송결과 성공, 실패 처리
|
||||
@ -1987,7 +1987,7 @@ public class MjonReservMsgController {
|
||||
if (j == 5)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getMsgGroupCnt()); // 발송건수
|
||||
if (j == 6)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getCallFrom()); // 발신번호
|
||||
cell.setCellValue((resultAllSentList.get(i)).getCallFromComma()); // 발신번호
|
||||
if (j == 7)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getTotPrice()); // 발신번호
|
||||
if (j == 8) {
|
||||
@ -2175,7 +2175,7 @@ public class MjonReservMsgController {
|
||||
if (j == 6)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getMsgGroupCnt()); // 발송건수
|
||||
if (j == 7)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getCallFrom()); // 발신번호
|
||||
cell.setCellValue((resultAllSentList.get(i)).getCallFromComma()); // 발신번호
|
||||
if (j == 8)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getTotPrice()); // 발신번호
|
||||
|
||||
@ -2284,7 +2284,7 @@ public class MjonReservMsgController {
|
||||
if (j == 6)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getMsgGroupCnt()); // 발송건수
|
||||
if (j == 7)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getCallFrom()); // 발신번호
|
||||
cell.setCellValue((resultAllSentList.get(i)).getCallFromComma()); // 발신번호
|
||||
if (j == 8)
|
||||
cell.setCellValue((resultAllSentList.get(i)).getTotPrice()); // 발신번호
|
||||
}
|
||||
|
||||
@ -1002,6 +1002,8 @@
|
||||
M2.diffMin,
|
||||
M2.callFrom ,
|
||||
M2.callTo ,
|
||||
REGEXP_REPLACE(M2.callFrom, '(02|.{3})(.+)(.{4})', '\\1-\\2-\\3') AS callFromComma,
|
||||
REGEXP_REPLACE(M2.callTo, '(02|.{3})(.+)(.{4})', '\\1-\\2-\\3') AS callToComma,
|
||||
M2.addrNm ,
|
||||
M2.totPrice ,
|
||||
M2.eachPrice ,
|
||||
|
||||
@ -72,12 +72,12 @@ $(document).ready(function(){
|
||||
<colgroup>
|
||||
<col style="width: 40px;">
|
||||
<col style="width: 8%;">
|
||||
<col style="width: 13%;">
|
||||
<col style="width: 13%;">
|
||||
<col style="width: 12%;">
|
||||
<col style="width: 12%;">
|
||||
<col style="width: 7%;">
|
||||
<col style="width: 90px;">
|
||||
<col style="width: 8%;">
|
||||
<col style="width: 10%;">
|
||||
<col style="width: 12%;">
|
||||
<col style="width: 7%;">
|
||||
<col style="width: 5%;">
|
||||
<col style="width: 5%;">
|
||||
@ -254,7 +254,7 @@ $(document).ready(function(){
|
||||
<p><c:out value="${resultAllResList.msgGroupCnt}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p><c:out value="${resultAllResList.callFrom}"/></p>
|
||||
<p><c:out value="${resultAllResList.callFromComma}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
|
||||
@ -211,7 +211,7 @@ $(document).ready(function(){
|
||||
<p><c:out value="${resultAllResList.msgGroupCnt}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p><c:out value="${resultAllResList.callFrom}"/></p>
|
||||
<p><c:out value="${resultAllResList.callFromComma}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
|
||||
@ -209,7 +209,7 @@ $(document).ready(function(){
|
||||
<p><c:out value="${resultAllResList.msgGroupCnt}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p><c:out value="${resultAllResList.callFrom}"/></p>
|
||||
<p><c:out value="${resultAllResList.callFromComma}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
|
||||
@ -225,7 +225,7 @@ function fnSearch(pageNo){
|
||||
<p><c:out value="${resultAllResList.msgGroupCnt}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p><c:out value="${resultAllResList.callFrom}"/></p>
|
||||
<p><c:out value="${resultAllResList.callFromComma}"/></p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user