--- src/main/webapp/js/kakao/at/tabulator.js
+++ src/main/webapp/js/kakao/at/tabulator.js
... | ... | @@ -132,6 +132,17 @@ |
| 132 | 132 |
|
| 133 | 133 |
|
| 134 | 134 |
|
| 135 |
+ // ⬇️ 기존 tableL 데이터 개수 확인 |
|
| 136 |
+ var existingData = tableL.getData(); |
|
| 137 |
+ var totalCount = existingData.length + numbers.length; |
|
| 138 |
+ |
|
| 139 |
+ // ⬇️ 30만건 초과 시 경고 및 중단 |
|
| 140 |
+ if (totalCount > 300000) {
|
|
| 141 |
+ alert("안정적인 서비스 운영을 위해서 최대 300000건 이내로 분할 발송해 주시기 바랍니다.");
|
|
| 142 |
+ return; |
|
| 143 |
+ } |
|
| 144 |
+ |
|
| 145 |
+ |
|
| 135 | 146 |
const formattedData = numbers.map(num => ({phone: num}));
|
| 136 | 147 |
|
| 137 | 148 |
// 기존 tableL의 데이터를 가져옵니다. |
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?