선거문자 20건 분할 발송 전체선택 변경 오류 수정

- 드래그 기능으로 선택된 것 모두 해제해도 버튼이 선택해제로 되어있음 / 전체선택으로 변경 되어야함.

문자발송 완료 후 발송 금액 초기화되지 않음
This commit is contained in:
rosewiper 2023-12-18 17:47:15 +09:00
parent e81cb2f92a
commit e9bb09cbee
2 changed files with 8 additions and 0 deletions

View File

@ -1681,6 +1681,9 @@ function sendMsgAjax(paramSmsCnt, paramBlockCnt){
publishCommon.toastsUtil('문자 발송이 완료되었습니다.','active','success');
}
//발송이 완료되면 발송 금액 표시를 0으로 변경해 준다.
$("#totalPriceTxt").text("0");
//받는사람 리스트 새로 갱신해주기
addTWCallToInfo();

View File

@ -909,6 +909,11 @@ function fnCallToChkAllCnt(){
$("#checkAll").text("전체선택");
}
}else{
$("#checkAll").val("N");
$("#checkAll").text("전체선택");
}
}