분할전송 건수 5,000건 초과시 20건으로 초기화 되도록 스크립트 수정
This commit is contained in:
parent
8f55eb843a
commit
e78336f7e1
@ -1054,6 +1054,7 @@ function checkNumber(event) {
|
||||
var totCnt = divideCnt + "" + event.key;
|
||||
if(Number(totCnt) > 5000){
|
||||
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
|
||||
$('#frmDivideCnt').val("20");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@ -3173,6 +3173,7 @@ function checkNumber(event) {
|
||||
if(Number(totCnt) > 5000){
|
||||
|
||||
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
|
||||
$('#divideCnt').val("20");
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@ -2817,6 +2817,7 @@ function checkNumber(event) {
|
||||
if(Number(totCnt) > 5000){
|
||||
|
||||
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
|
||||
$('#divideCnt').val("20");
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@ -3181,6 +3181,7 @@ function checkNumber(event) {
|
||||
if(Number(totCnt) > 5000){
|
||||
|
||||
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
|
||||
$('#divideCnt').val("20");
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@ -2901,6 +2901,7 @@ function checkNumber(event) {
|
||||
if(Number(totCnt) > 5000){
|
||||
|
||||
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
|
||||
$('#divideCnt').val("20");
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user