알림톡 발송 > 번호추가 버튼 클릭 시 30만건 제한 체크 후 alert
This commit is contained in:
parent
32d12f02d9
commit
65c2fb1783
@ -132,6 +132,17 @@ $(document).ready(function (){
|
||||
|
||||
|
||||
|
||||
// ⬇️ 기존 tableL 데이터 개수 확인
|
||||
var existingData = tableL.getData();
|
||||
var totalCount = existingData.length + numbers.length;
|
||||
|
||||
// ⬇️ 30만건 초과 시 경고 및 중단
|
||||
if (totalCount > 300000) {
|
||||
alert("안정적인 서비스 운영을 위해서 최대 300000건 이내로 분할 발송해 주시기 바랍니다.");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
const formattedData = numbers.map(num => ({phone: num}));
|
||||
|
||||
// 기존 tableL의 데이터를 가져옵니다.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user