분할전송 건수 5,000건 초과시 20건으로 초기화 되도록 스크립트 수정

This commit is contained in:
rosewiper 2023-10-16 11:19:44 +09:00
parent 8f55eb843a
commit e78336f7e1
5 changed files with 5 additions and 0 deletions

View File

@ -1054,6 +1054,7 @@ function checkNumber(event) {
var totCnt = divideCnt + "" + event.key;
if(Number(totCnt) > 5000){
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
$('#frmDivideCnt').val("20");
return false;
}

View File

@ -3173,6 +3173,7 @@ function checkNumber(event) {
if(Number(totCnt) > 5000){
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
$('#divideCnt').val("20");
return false;
}

View File

@ -2817,6 +2817,7 @@ function checkNumber(event) {
if(Number(totCnt) > 5000){
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
$('#divideCnt').val("20");
return false;
}

View File

@ -3181,6 +3181,7 @@ function checkNumber(event) {
if(Number(totCnt) > 5000){
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
$('#divideCnt').val("20");
return false;
}

View File

@ -2901,6 +2901,7 @@ function checkNumber(event) {
if(Number(totCnt) > 5000){
alert("분할전송 건수는 5,000건을 초과할 수 없습니다.");
$('#divideCnt').val("20");
return false;
}