--- src/main/webapp/WEB-INF/jsp/web/addr/AddrList.jsp
+++ src/main/webapp/WEB-INF/jsp/web/addr/AddrList.jsp
... | ... | @@ -141,7 +141,7 @@ |
| 141 | 141 |
alert("해당 그룹에 중복된 번호가 있습니다.");
|
| 142 | 142 |
return; |
| 143 | 143 |
} |
| 144 |
- //alert("저장 되었습니다.");
|
|
| 144 |
+ alert("저장 되었습니다.");
|
|
| 145 | 145 |
|
| 146 | 146 |
listAddrGrp(); |
| 147 | 147 |
addrGroupLoadAjax(); |
... | ... | @@ -275,7 +275,6 @@ |
| 275 | 275 |
|
| 276 | 276 |
// 대량등록 닫기 |
| 277 | 277 |
function setAddrMassClose() {
|
| 278 |
- $('#btnAddrMassClose').click();
|
|
| 279 | 278 |
|
| 280 | 279 |
var $objTabul = fn_utils_getTabulator(); |
| 281 | 280 |
$objTabul.clearData(); |
... | ... | @@ -300,6 +299,8 @@ |
| 300 | 299 |
addrGroupLoadAjax(); |
| 301 | 300 |
addrLoadAjax(); |
| 302 | 301 |
fn_errorPopClean(); // 에러 팝업 초기화 |
| 302 |
+ |
|
| 303 |
+ closeTooltip(); |
|
| 303 | 304 |
} |
| 304 | 305 |
|
| 305 | 306 |
// 주소록 탭마다 돌면서 총, 중복, 오류 건수 초기화 |
--- src/main/webapp/WEB-INF/jsp/web/fax/addr/FaxAddrList.jsp
+++ src/main/webapp/WEB-INF/jsp/web/fax/addr/FaxAddrList.jsp
... | ... | @@ -122,7 +122,7 @@ |
| 122 | 122 |
alert("해당 그룹에 중복된 번호가 있습니다.");
|
| 123 | 123 |
return; |
| 124 | 124 |
} |
| 125 |
- //alert("저장 되었습니다.");
|
|
| 125 |
+ alert("저장 되었습니다.");
|
|
| 126 | 126 |
|
| 127 | 127 |
listAddrGrp(); |
| 128 | 128 |
addrGroupLoadAjax(); |
--- src/main/webapp/WEB-INF/jsp/web/msgdata/include/msgDataIncludeExcel.jsp
+++ src/main/webapp/WEB-INF/jsp/web/msgdata/include/msgDataIncludeExcel.jsp
... | ... | @@ -691,7 +691,6 @@ |
| 691 | 691 |
}); |
| 692 | 692 |
|
| 693 | 693 |
|
| 694 |
- |
|
| 695 | 694 |
</script> |
| 696 | 695 |
|
| 697 | 696 |
<!-- 중복전화번호 data-tooltip:addrMassDupli_layer --> |
--- src/main/webapp/js/MJUtill.js
+++ src/main/webapp/js/MJUtill.js
... | ... | @@ -375,7 +375,7 @@ |
| 375 | 375 |
$('.nowMsgCnt').text(numberWithCommas(msgCnt.toFixed()));
|
| 376 | 376 |
|
| 377 | 377 |
//변환문자 건수 내용 표기 |
| 378 |
- totalCntTxt = "그림 : <strong>" + totRows + "</strong> 건";; |
|
| 378 |
+ totalCntTxt = "그림 : <strong>" + numberWithCommas(totRows) + "</strong> 건";; |
|
| 379 | 379 |
|
| 380 | 380 |
}else{
|
| 381 | 381 |
|
... | ... | @@ -391,7 +391,7 @@ |
| 391 | 391 |
$('#eachPrice').val(numberWithCommas(longPrice));
|
| 392 | 392 |
|
| 393 | 393 |
//변환문자 건수 내용 표기 |
| 394 |
- totalCntTxt = "장문 : <strong>" + msg_long + "</strong> 건"; |
|
| 394 |
+ totalCntTxt = "장문 : <strong>" + numberWithCommas(msg_long) + "</strong> 건"; |
|
| 395 | 395 |
|
| 396 | 396 |
//변환장문 건수 Hidden 폼에 넣어주기 |
| 397 | 397 |
$('#longMsgCnt').val(msg_long);
|
... | ... | @@ -417,12 +417,12 @@ |
| 417 | 417 |
if(msg_long > 0){
|
| 418 | 418 |
|
| 419 | 419 |
//변환문자 건수 내용 표기 |
| 420 |
- totalCntTxt = totalCntTxt + "/ 단문 : <strong>" + msg_short + "</strong> 건"; |
|
| 420 |
+ totalCntTxt = totalCntTxt + "/ 단문 : <strong>" + numberWithCommas(msg_short) + "</strong> 건"; |
|
| 421 | 421 |
|
| 422 | 422 |
}else{
|
| 423 | 423 |
|
| 424 | 424 |
//변환문자 건수 내용 표기 |
| 425 |
- totalCntTxt = "단문 : <strong>" + msg_short + "</strong> 건"; |
|
| 425 |
+ totalCntTxt = "단문 : <strong>" + numberWithCommas(msg_short) + "</strong> 건"; |
|
| 426 | 426 |
|
| 427 | 427 |
} |
| 428 | 428 |
|
... | ... | @@ -1091,3 +1091,5 @@ |
| 1091 | 1091 |
$('#rowDupCnt').text(cnt)
|
| 1092 | 1092 |
} |
| 1093 | 1093 |
|
| 1094 |
+ |
|
| 1095 |
+ |
--- src/main/webapp/js/web/addr/event.js
+++ src/main/webapp/js/web/addr/event.js
... | ... | @@ -450,4 +450,9 @@ |
| 450 | 450 |
} |
| 451 | 451 |
|
| 452 | 452 |
|
| 453 |
+function closeTooltip(){
|
|
| 453 | 454 |
|
| 455 |
+ $('.adr_popup01').hide();
|
|
| 456 |
+ $('.mask').removeClass('on');
|
|
| 457 |
+ $('body').removeAttr('style');
|
|
| 458 |
+} |
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?