결제하기 최소 충전금액 이하로 콘솔조작시도시 체크기능 추가

This commit is contained in:
itn 2023-09-07 17:57:11 +09:00
parent 9d720302e8
commit 2259f66600
2 changed files with 11 additions and 1 deletions

View File

@ -298,7 +298,12 @@ function pgOpenerPopup(){
alert("충전금액을 선택해주세요.");
return false;
}
else if(lastPrice < 5500){
//충전금액
alert("최소 충전금액 5천원 이상 선택해주세요.");
return false;
}
// 다음 결제시 결제수단 UPDATE
setNextPayMethod();

View File

@ -233,6 +233,11 @@ function pgOpenerPopup(){
alert("충전금액을 선택해주세요.");
return false;
}
else if(lastPrice < 5500){
//충전금액
alert("최소 충전금액 5천원 이상 선택해주세요.");
return false;
}
// 다음 결제시 결제수단 UPDATE
setNextPayMethod();