결제하기 간편결제 기능 추가
@30a62d2bc94786e4f9e19d330f8e410eae5ef12f
--- src/main/java/itn/let/mjo/event/web/MjonEventPayV2Controller.java
+++ src/main/java/itn/let/mjo/event/web/MjonEventPayV2Controller.java
... | ... | @@ -76,6 +76,15 @@ |
| 76 | 76 |
return "redirect:/web/user/login/login.do"; |
| 77 | 77 |
} |
| 78 | 78 |
|
| 79 |
+ // 하드코딩 |
|
| 80 |
+ if(!userId.equals("nobledeco")) {
|
|
| 81 |
+ if(!userId.equals("nobledeco2")) {
|
|
| 82 |
+ if(!userId.equals("nopay")) {
|
|
| 83 |
+ return "redirect:/web/main/mainPage.do"; |
|
| 84 |
+ } |
|
| 85 |
+ } |
|
| 86 |
+ } |
|
| 87 |
+ |
|
| 79 | 88 |
//기존 결제 내역이 있는 회원인지 확인 |
| 80 | 89 |
int payCnt = 0; |
| 81 | 90 |
if(StringUtil.isNotEmpty(userId)) {
|
--- src/main/java/itn/let/mjo/pay/web/MjonPayV2Controller.java
+++ src/main/java/itn/let/mjo/pay/web/MjonPayV2Controller.java
... | ... | @@ -123,10 +123,11 @@ |
| 123 | 123 |
return "redirect:/web/user/login/login.do"; |
| 124 | 124 |
} |
| 125 | 125 |
|
| 126 |
+ // 하드코딩 |
|
| 126 | 127 |
// Itm Member Id Check |
| 127 |
- //if(!getItnMemberId(userId)) {
|
|
| 128 |
- // return "redirect:/web/main/mainPage.do"; |
|
| 129 |
- //} |
|
| 128 |
+ if(!getItnMemberId(userId)) {
|
|
| 129 |
+ return "redirect:/web/main/mainPage.do"; |
|
| 130 |
+ } |
|
| 130 | 131 |
|
| 131 | 132 |
MberManageVO mberManageVO = mberManageService.selectMber(loginVO.getId()); |
| 132 | 133 |
model.addAttribute("mberManageVO", mberManageVO);
|
--- src/main/webapp/WEB-INF/jsp/web/event/pay/EventPayViewV2.jsp
+++ src/main/webapp/WEB-INF/jsp/web/event/pay/EventPayViewV2.jsp
... | ... | @@ -192,15 +192,16 @@ |
| 192 | 192 |
var payMethod = ""; |
| 193 | 193 |
document.pgForm.action = "/web/member/pay/PayActionAjax.do"; |
| 194 | 194 |
|
| 195 |
- if ($currentTab == 0) {
|
|
| 196 |
- payMethod = "SPAY"; |
|
| 197 |
- } else if ($currentTab==1) {
|
|
| 195 |
+ if ($currentTab==0) {
|
|
| 198 | 196 |
payMethod = "CARD"; |
| 199 |
- } else if($currentTab==2){
|
|
| 197 |
+ } else if($currentTab==1) {
|
|
| 200 | 198 |
payMethod = "VBANK"; |
| 201 |
- } else if($currentTab==3){
|
|
| 199 |
+ } else if($currentTab==2) {
|
|
| 202 | 200 |
payMethod = "BANK"; |
| 203 |
- } |
|
| 201 |
+ } else {
|
|
| 202 |
+ payMethod = "SPAY"; |
|
| 203 |
+ } |
|
| 204 |
+ |
|
| 204 | 205 |
$('input[name=payMethod]').val(payMethod);
|
| 205 | 206 |
|
| 206 | 207 |
//결제수단 상태 체크 |
... | ... | @@ -226,29 +227,37 @@ |
| 226 | 227 |
|
| 227 | 228 |
// 결제창 호출 |
| 228 | 229 |
if ($currentTab==0) {
|
| 229 |
- // KG 모빌리언스 => SPAY(간편결제) |
|
| 230 |
- kgmPayCardRequest(); |
|
| 231 |
- } |
|
| 232 |
- else if ($currentTab==1) {
|
|
| 233 | 230 |
// 나이스페이 => CARD(카드결제) |
| 234 | 231 |
pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
| 235 | 232 |
|
| 236 | 233 |
document.pgForm.method = "post"; |
| 237 | 234 |
document.pgForm.target = "pg_opener" ; |
| 238 | 235 |
document.pgForm.submit(); |
| 239 |
- } |
|
| 240 |
- else if ($currentTab==2) {
|
|
| 236 |
+ } else if ($currentTab==1) {
|
|
| 241 | 237 |
// 전용계좌 |
| 242 |
- } |
|
| 243 |
- else if ($currentTab==3) {
|
|
| 238 |
+ } else if ($currentTab==2) {
|
|
| 244 | 239 |
// KG 모빌리언스 => BANK(즉시이체) |
| 245 | 240 |
kgmPayBankRequest(); |
| 246 |
- } |
|
| 241 |
+ } else {
|
|
| 242 |
+ var cnDirect = ""; |
|
| 243 |
+ if ($currentTab == 3) {
|
|
| 244 |
+ cnDirect = "NAV:00:N"; // 네이버페이 |
|
| 245 |
+ } else if ($currentTab==4) {
|
|
| 246 |
+ cnDirect = "KKO:00:N"; // 카카오페이 |
|
| 247 |
+ } else if ($currentTab==5) {
|
|
| 248 |
+ cnDirect = "TOS:00:N"; // 토스페이 |
|
| 249 |
+ } else if ($currentTab==6) {
|
|
| 250 |
+ cnDirect = "PYC:00:N"; // 페이코 |
|
| 251 |
+ } |
|
| 252 |
+ |
|
| 253 |
+ // KG 모빌리언스 => SPAY(간편결제) |
|
| 254 |
+ kgmPayCardRequest(cnDirect); |
|
| 255 |
+ } |
|
| 247 | 256 |
|
| 248 | 257 |
} |
| 249 | 258 |
|
| 250 | 259 |
//KG 모빌리언스 => CARD |
| 251 |
-function kgmPayCardRequest() {
|
|
| 260 |
+function kgmPayCardRequest(cnDirect) {
|
|
| 252 | 261 |
$.ajax({
|
| 253 | 262 |
type: "POST", |
| 254 | 263 |
url: "/web/member/pay/kgmCardEncodeAjax.do", |
... | ... | @@ -285,7 +294,7 @@ |
| 285 | 294 |
form.Termregno.value = data.Termregno; |
| 286 | 295 |
form.APP_SCHEME.value = data.APP_SCHEME; |
| 287 | 296 |
form.CN_FIXCARDCD.value = data.CN_FIXCARDCD; |
| 288 |
- form.CN_DIRECT.value = data.CN_DIRECT; |
|
| 297 |
+ form.CN_DIRECT.value = cnDirect; |
|
| 289 | 298 |
form.CN_INSTALL.value = data.CN_INSTALL; |
| 290 | 299 |
form.Deposit.value = data.Deposit; |
| 291 | 300 |
|
... | ... | @@ -808,76 +817,20 @@ |
| 808 | 817 |
</div>--%> |
| 809 | 818 |
<div> |
| 810 | 819 |
<p class="tab_tit">충전수단 선택</p> |
| 811 |
- <ul class="area_tab"> |
|
| 812 |
- <li class="btn_charge_simple btn_tab active"><button type="button" onclick="TabTypePay(this,'0');"><i></i>간편결제</button></li> |
|
| 813 |
- <li class="btn_charge1 btn_tab"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 820 |
+ <ul class="area_tab type03"> |
|
| 821 |
+ <li class="btn_charge1 btn_tab active"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 814 | 822 |
<li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'2');" id="btnDdedicatedAccount"><i></i>전용계좌</button></li> |
| 815 |
- <li class="btn_charge5 btn_tab"><button type="button" onclick="TabTypePay(this,'5');"><i></i>즉시이체</button></li> |
|
| 823 |
+ <li class="btn_charge3 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>즉시이체</button></li> |
|
| 824 |
+ |
|
| 825 |
+ <li class="btn_charge5 btn_tab simple_pay event_simple"><button type="button" onclick="TabTypePay(this,'6');"><i></i></button></li> |
|
| 826 |
+ <li class="btn_charge6 btn_tab simple_pay event_simple"><button type="button" onclick="TabTypePay(this,'7');"><i></i></button></li> |
|
| 827 |
+ <li class="btn_charge7 btn_tab simple_pay event_simple"><button type="button" onclick="TabTypePay(this,'8');"><i></i></button></li> |
|
| 828 |
+ <li class="btn_charge8 btn_tab simple_pay event_simple"><button type="button" onclick="TabTypePay(this,'9');"><i></i></button></li> |
|
| 816 | 829 |
</ul> |
| 817 |
- <div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도 |
|
| 818 |
- 이용합니다.</label></div> |
|
| 830 |
+ <div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도 이용합니다.</label></div> |
|
| 819 | 831 |
|
| 820 |
- <!-- 간편결제 --> |
|
| 821 |
- <div class="area_tabcont on" id="tab2_0"> |
|
| 822 |
- <p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 간편결제</p> |
|
| 823 |
- <table class="tType1"> |
|
| 824 |
- <caption></caption> |
|
| 825 |
- <colgroup> |
|
| 826 |
- <col style="width: 100px;"> |
|
| 827 |
- <col style="width: auto;"> |
|
| 828 |
- </colgroup> |
|
| 829 |
- <tbody> |
|
| 830 |
- <tr class="charge_content"> |
|
| 831 |
- <th scope="row">충전금액</th> |
|
| 832 |
- <td class="flex"> |
|
| 833 |
- <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 834 |
- <option value="5000">5,000</option> |
|
| 835 |
- <option value="10000">10,000</option> |
|
| 836 |
- <option value="20000">20,000</option> |
|
| 837 |
- <option value="30000">30,000</option> |
|
| 838 |
- <option value="50000" selected>50,000</option> |
|
| 839 |
- <option value="100000">100,000</option> |
|
| 840 |
- <option value="200000">200,000</option> |
|
| 841 |
- <option value="300000">300,000</option> |
|
| 842 |
- <option value="500000">500,000</option> |
|
| 843 |
- </select> |
|
| 844 |
- <p class="input_in">원</p> |
|
| 845 |
- <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 846 |
- </td> |
|
| 847 |
- </tr> |
|
| 848 |
- <tr> |
|
| 849 |
- <td colspan="2"> |
|
| 850 |
- <div class="amount_wrap"> |
|
| 851 |
- <dl> |
|
| 852 |
- <dt>최종 결제금액 :</dt> |
|
| 853 |
- <dd> |
|
| 854 |
- <ul> |
|
| 855 |
- <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 856 |
- <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 857 |
- <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 858 |
- </ul> |
|
| 859 |
- </dd> |
|
| 860 |
- </dl> |
|
| 861 |
- <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 862 |
- </div> |
|
| 863 |
- </td> |
|
| 864 |
- </tr> |
|
| 865 |
- <tr> |
|
| 866 |
- <td colspan="2"> |
|
| 867 |
- <div class="area_text"> |
|
| 868 |
- <%--<p><span class="c_222222">- 신용카드 결제가 어려우신 고객께서는 문자온 고객센터(010-8432-9333)를 통해서도 ARS 신용카드 결제를 하실 수 있습니다.</span></p>--%> |
|
| 869 |
- <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 870 |
- <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 871 |
- </div> |
|
| 872 |
- </td> |
|
| 873 |
- </tr> |
|
| 874 |
- </tbody> |
|
| 875 |
- </table> |
|
| 876 |
- </div> |
|
| 877 |
- <!-- //간편결제 --> |
|
| 878 |
- |
|
| 879 | 832 |
<!-- 신용카드 --> |
| 880 |
- <div class="area_tabcont" id="tab2_1"> |
|
| 833 |
+ <div class="area_tabcont on" id="tab2_1"> |
|
| 881 | 834 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 신용카드</p> |
| 882 | 835 |
<table class="tType1"> |
| 883 | 836 |
<caption></caption> |
... | ... | @@ -1040,65 +993,8 @@ |
| 1040 | 993 |
</div> |
| 1041 | 994 |
<!-- //전용계좌 --> |
| 1042 | 995 |
|
| 1043 |
- <!-- 휴대폰 --> |
|
| 1044 |
- <%-- <div class="area_tabcont" id="tab2_4"> |
|
| 1045 |
- <p class="tType1_title"><img src="/publish/images/content/icon_charging4_small.png" alt=""> 휴대폰결제</p> |
|
| 1046 |
- <table class="tType1"> |
|
| 1047 |
- <caption></caption> |
|
| 1048 |
- <colgroup> |
|
| 1049 |
- <col style="width: 100px;"> |
|
| 1050 |
- <col style="width: auto;"> |
|
| 1051 |
- </colgroup> |
|
| 1052 |
- <tbody> |
|
| 1053 |
- <tr class="charge_content"> |
|
| 1054 |
- <th scope="row">충전금액</th> |
|
| 1055 |
- <td class="flex"> |
|
| 1056 |
- <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1057 |
- <option value="5000">5,000</option> |
|
| 1058 |
- <option value="10000">10,000</option> |
|
| 1059 |
- <option value="20000">20,000</option> |
|
| 1060 |
- <option value="30000">30,000</option> |
|
| 1061 |
- <option value="50000" selected>50,000</option> |
|
| 1062 |
- <option value="100000">100,000</option> |
|
| 1063 |
- <option value="150000">150,000</option> |
|
| 1064 |
- </select> |
|
| 1065 |
- <p class="input_in">원</p> |
|
| 1066 |
- <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1067 |
- </td> |
|
| 1068 |
- </tr> |
|
| 1069 |
- <tr> |
|
| 1070 |
- <td colspan="2"> |
|
| 1071 |
- <div class="amount_wrap"> |
|
| 1072 |
- <dl> |
|
| 1073 |
- <dt>최종 결제금액 :</dt> |
|
| 1074 |
- <dd> |
|
| 1075 |
- <ul> |
|
| 1076 |
- <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1077 |
- <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1078 |
- <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1079 |
- </ul> |
|
| 1080 |
- </dd> |
|
| 1081 |
- </dl> |
|
| 1082 |
- <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1083 |
- </div> |
|
| 1084 |
- </td> |
|
| 1085 |
- </tr> |
|
| 1086 |
- <tr> |
|
| 1087 |
- <td colspan="2"> |
|
| 1088 |
- <div class="area_text"> |
|
| 1089 |
- <p>- 월 30만원 한도 내에서 충전하실 수 있습니다.</p> |
|
| 1090 |
- <p>- 휴대폰 소액결제 제한에 관한 사항은 가입하신 통신사를 통해 확인하실 수 있습니다.</p> |
|
| 1091 |
- <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1092 |
- </div> |
|
| 1093 |
- </td> |
|
| 1094 |
- </tr> |
|
| 1095 |
- </tbody> |
|
| 1096 |
- </table> |
|
| 1097 |
- </div> --%> |
|
| 1098 |
- <!-- //휴대폰 --> |
|
| 1099 |
- |
|
| 1100 | 996 |
<!-- 즉시이체 --> |
| 1101 |
- <div class="area_tabcont" id="tab2_5"> |
|
| 997 |
+ <div class="area_tabcont" id="tab2_4"> |
|
| 1102 | 998 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging5_small.png" alt=""> 즉시이체</p> |
| 1103 | 999 |
<table class="tType1"> |
| 1104 | 1000 |
<caption></caption> |
... | ... | @@ -1154,6 +1050,272 @@ |
| 1154 | 1050 |
</table> |
| 1155 | 1051 |
</div> |
| 1156 | 1052 |
<!-- //즉시이체 --> |
| 1053 |
+ |
|
| 1054 |
+ <!-- 네이버페이 --> |
|
| 1055 |
+ <div class="area_tabcont" id="tab2_6"> |
|
| 1056 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> 네이버페이</p> |
|
| 1057 |
+ <table class="tType1"> |
|
| 1058 |
+ <colgroup> |
|
| 1059 |
+ <col style="width: 100px;"> |
|
| 1060 |
+ <col style="width: auto;"> |
|
| 1061 |
+ </colgroup> |
|
| 1062 |
+ <tbody> |
|
| 1063 |
+ <tr class="charge_content"> |
|
| 1064 |
+ <th scope="row">충전금액</th> |
|
| 1065 |
+ <td class="flex"> |
|
| 1066 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1067 |
+ <option value="5000">5,000</option> |
|
| 1068 |
+ <option value="10000">10,000</option> |
|
| 1069 |
+ <option value="20000">20,000</option> |
|
| 1070 |
+ <option value="30000">30,000</option> |
|
| 1071 |
+ <option value="50000" selected="">50,000</option> |
|
| 1072 |
+ <option value="100000">100,000</option> |
|
| 1073 |
+ <option value="200000">200,000</option> |
|
| 1074 |
+ <option value="300000">300,000</option> |
|
| 1075 |
+ <option value="500000">500,000</option> |
|
| 1076 |
+ <option value="700000">700,000</option> |
|
| 1077 |
+ <option value="900000">900,000</option> |
|
| 1078 |
+ <option value="1000000">1,000,000</option> |
|
| 1079 |
+ <option value="1200000">1,200,000</option> |
|
| 1080 |
+ <option value="1500000">1,500,000</option> |
|
| 1081 |
+ <option value="2000000">2,000,000</option> |
|
| 1082 |
+ <option value="2500000">2,500,000</option> |
|
| 1083 |
+ <option value="3000000">3,000,000</option> |
|
| 1084 |
+ </select> |
|
| 1085 |
+ |
|
| 1086 |
+ <p class="input_in">원</p> |
|
| 1087 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1088 |
+ </td> |
|
| 1089 |
+ </tr> |
|
| 1090 |
+ <tr> |
|
| 1091 |
+ <td colspan="2"> |
|
| 1092 |
+ <div class="amount_wrap"> |
|
| 1093 |
+ <dl> |
|
| 1094 |
+ <dt>최종 결제금액 :</dt> |
|
| 1095 |
+ <dd> |
|
| 1096 |
+ <ul> |
|
| 1097 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1098 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1099 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1100 |
+ </ul> |
|
| 1101 |
+ </dd> |
|
| 1102 |
+ </dl> |
|
| 1103 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1104 |
+ </div> |
|
| 1105 |
+ </td> |
|
| 1106 |
+ </tr> |
|
| 1107 |
+ <tr> |
|
| 1108 |
+ <td colspan="2"> |
|
| 1109 |
+ <div class="area_text"> |
|
| 1110 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1111 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1112 |
+ <p>- 간편결제 시 세금계산서 및 간이영수증은 제공되지 않습니다.</p> |
|
| 1113 |
+ <p>- 네이버페이 카드 결제 영수증은 네이버페이를 통해서 발급받으실 수 있습니다.</p> |
|
| 1114 |
+ <p>- 네이버페이 포인트 사용에 따른 현금영수증 발행은 문자온 캐시 결제과정에서 결제자가 직접 선택하여야만 요청할 수 있습니다.(결제 완료 이후 문자온에서 현금영수증 처리 불가)</p> |
|
| 1115 |
+ </div> |
|
| 1116 |
+ </td> |
|
| 1117 |
+ </tr> |
|
| 1118 |
+ </tbody> |
|
| 1119 |
+ </table> |
|
| 1120 |
+ </div> |
|
| 1121 |
+ <!-- //네이버페이 --> |
|
| 1122 |
+ |
|
| 1123 |
+ <!-- 카카오페이 --> |
|
| 1124 |
+ <div class="area_tabcont current" id="tab2_7"> |
|
| 1125 |
+ <!-- 신규계좌발급 시 --> |
|
| 1126 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> 카카오페이</p> |
|
| 1127 |
+ <table class="tType1"> |
|
| 1128 |
+ <colgroup> |
|
| 1129 |
+ <col style="width: 100px;"> |
|
| 1130 |
+ <col style="width: auto;"> |
|
| 1131 |
+ </colgroup> |
|
| 1132 |
+ <tbody> |
|
| 1133 |
+ <tr class="charge_content"> |
|
| 1134 |
+ <th scope="row">충전금액</th> |
|
| 1135 |
+ <td class="flex"> |
|
| 1136 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1137 |
+ <option value="5000">5,000</option> |
|
| 1138 |
+ <option value="10000">10,000</option> |
|
| 1139 |
+ <option value="20000">20,000</option> |
|
| 1140 |
+ <option value="30000">30,000</option> |
|
| 1141 |
+ <option value="50000" selected="">50,000</option> |
|
| 1142 |
+ <option value="100000">100,000</option> |
|
| 1143 |
+ <option value="200000">200,000</option> |
|
| 1144 |
+ <option value="300000">300,000</option> |
|
| 1145 |
+ <option value="500000">500,000</option> |
|
| 1146 |
+ <option value="700000">700,000</option> |
|
| 1147 |
+ <option value="900000">900,000</option> |
|
| 1148 |
+ <option value="1000000">1,000,000</option> |
|
| 1149 |
+ <option value="1200000">1,200,000</option> |
|
| 1150 |
+ <option value="1500000">1,500,000</option> |
|
| 1151 |
+ <option value="2000000">2,000,000</option> |
|
| 1152 |
+ <option value="2500000">2,500,000</option> |
|
| 1153 |
+ <option value="3000000">3,000,000</option> |
|
| 1154 |
+ </select> |
|
| 1155 |
+ |
|
| 1156 |
+ <p class="input_in">원</p> |
|
| 1157 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1158 |
+ </td> |
|
| 1159 |
+ </tr> |
|
| 1160 |
+ <tr> |
|
| 1161 |
+ <td colspan="2"> |
|
| 1162 |
+ <div class="amount_wrap"> |
|
| 1163 |
+ <dl> |
|
| 1164 |
+ <dt>최종 결제금액 :</dt> |
|
| 1165 |
+ <dd> |
|
| 1166 |
+ <ul> |
|
| 1167 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1168 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1169 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1170 |
+ </ul> |
|
| 1171 |
+ </dd> |
|
| 1172 |
+ </dl> |
|
| 1173 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1174 |
+ </div> |
|
| 1175 |
+ </td> |
|
| 1176 |
+ </tr> |
|
| 1177 |
+ <tr> |
|
| 1178 |
+ <td colspan="2"> |
|
| 1179 |
+ <div class="area_text"> |
|
| 1180 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1181 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1182 |
+ <p>- 간편결제 시 세금계산서 및 간이영수증은 제공되지 않습니다.</p> |
|
| 1183 |
+ <p>- 카카오페이 결제에 따른 카드영수증 및 현금영수증은 카카오페이 앱을 통해서만 확인 가능합니다.</p> |
|
| 1184 |
+ </div> |
|
| 1185 |
+ </td> |
|
| 1186 |
+ </tr> |
|
| 1187 |
+ </tbody> |
|
| 1188 |
+ </table> |
|
| 1189 |
+ </div> |
|
| 1190 |
+ <!-- //카카오페이 --> |
|
| 1191 |
+ |
|
| 1192 |
+ <!-- 토스페이 --> |
|
| 1193 |
+ <div class="area_tabcont current" id="tab2_8"> |
|
| 1194 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> 토스페이</p> |
|
| 1195 |
+ <table class="tType1"> |
|
| 1196 |
+ <caption></caption> |
|
| 1197 |
+ <colgroup> |
|
| 1198 |
+ <col style="width: 100px;"> |
|
| 1199 |
+ <col style="width: auto;"> |
|
| 1200 |
+ </colgroup> |
|
| 1201 |
+ <tbody> |
|
| 1202 |
+ <tr class="charge_content"> |
|
| 1203 |
+ <th scope="row">충전금액</th> |
|
| 1204 |
+ <td class="flex"> |
|
| 1205 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1206 |
+ <option value="5000">5,000</option> |
|
| 1207 |
+ <option value="10000">10,000</option> |
|
| 1208 |
+ <option value="20000">20,000</option> |
|
| 1209 |
+ <option value="30000">30,000</option> |
|
| 1210 |
+ <option value="50000" selected="">50,000</option> |
|
| 1211 |
+ <option value="100000">100,000</option> |
|
| 1212 |
+ <option value="150000">150,000</option> |
|
| 1213 |
+ </select> |
|
| 1214 |
+ |
|
| 1215 |
+ <p class="input_in">원</p> |
|
| 1216 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1217 |
+ </td> |
|
| 1218 |
+ </tr> |
|
| 1219 |
+ <tr> |
|
| 1220 |
+ <td colspan="2"> |
|
| 1221 |
+ <div class="amount_wrap"> |
|
| 1222 |
+ <dl> |
|
| 1223 |
+ <dt>최종 결제금액 :</dt> |
|
| 1224 |
+ <dd> |
|
| 1225 |
+ <ul> |
|
| 1226 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1227 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1228 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1229 |
+ </ul> |
|
| 1230 |
+ </dd> |
|
| 1231 |
+ </dl> |
|
| 1232 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1233 |
+ </div> |
|
| 1234 |
+ </td> |
|
| 1235 |
+ </tr> |
|
| 1236 |
+ <tr> |
|
| 1237 |
+ <td colspan="2"> |
|
| 1238 |
+ <div class="area_text"> |
|
| 1239 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1240 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1241 |
+ <p>- 간편결제 시 세금계산서 및 간이영수증은 제공되지 않습니다.</p> |
|
| 1242 |
+ <p>- 토스페이 결제에 따른 카드영수증 및 현금영수증은 토스페이 앱을 통해서만 확인 가능합니다.</p> |
|
| 1243 |
+ </div> |
|
| 1244 |
+ </td> |
|
| 1245 |
+ </tr> |
|
| 1246 |
+ </tbody> |
|
| 1247 |
+ </table> |
|
| 1248 |
+ </div> |
|
| 1249 |
+ <!-- //토스페이 --> |
|
| 1250 |
+ |
|
| 1251 |
+ <!-- 페이코 --> |
|
| 1252 |
+ <div class="area_tabcont current" id="tab2_9"> |
|
| 1253 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> PAYCO</p> |
|
| 1254 |
+ <table class="tType1"> |
|
| 1255 |
+ <caption></caption> |
|
| 1256 |
+ <colgroup> |
|
| 1257 |
+ <col style="width: 100px;"> |
|
| 1258 |
+ <col style="width: auto;"> |
|
| 1259 |
+ </colgroup> |
|
| 1260 |
+ <tbody> |
|
| 1261 |
+ <tr class="charge_content"> |
|
| 1262 |
+ <th scope="row">충전금액</th> |
|
| 1263 |
+ <td class="flex"> |
|
| 1264 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1265 |
+ <option value="5000">5,000</option> |
|
| 1266 |
+ <option value="10000">10,000</option> |
|
| 1267 |
+ <option value="20000">20,000</option> |
|
| 1268 |
+ <option value="30000">30,000</option> |
|
| 1269 |
+ <option value="50000" selected="">50,000</option> |
|
| 1270 |
+ <option value="100000">100,000</option> |
|
| 1271 |
+ <option value="200000">200,000</option> |
|
| 1272 |
+ <option value="300000">300,000</option> |
|
| 1273 |
+ <option value="500000">500,000</option> |
|
| 1274 |
+ <option value="700000">700,000</option> |
|
| 1275 |
+ <option value="900000">900,000</option> |
|
| 1276 |
+ <option value="1000000">1,000,000</option> |
|
| 1277 |
+ <option value="1200000">1,200,000</option> |
|
| 1278 |
+ <option value="1500000">1,500,000</option> |
|
| 1279 |
+ <option value="2000000">2,000,000</option> |
|
| 1280 |
+ <option value="2500000">2,500,000</option> |
|
| 1281 |
+ <option value="3000000">3,000,000</option> |
|
| 1282 |
+ </select> |
|
| 1283 |
+ |
|
| 1284 |
+ <p class="input_in">원</p> |
|
| 1285 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1286 |
+ </td> |
|
| 1287 |
+ </tr> |
|
| 1288 |
+ <tr> |
|
| 1289 |
+ <td colspan="2"> |
|
| 1290 |
+ <div class="amount_wrap"> |
|
| 1291 |
+ <dl> |
|
| 1292 |
+ <dt>최종 결제금액 :</dt> |
|
| 1293 |
+ <dd> |
|
| 1294 |
+ <ul> |
|
| 1295 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1296 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1297 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1298 |
+ </ul> |
|
| 1299 |
+ </dd> |
|
| 1300 |
+ </dl> |
|
| 1301 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1302 |
+ </div> |
|
| 1303 |
+ </td> |
|
| 1304 |
+ </tr> |
|
| 1305 |
+ <tr> |
|
| 1306 |
+ <td colspan="2"> |
|
| 1307 |
+ <div class="area_text"> |
|
| 1308 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1309 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1310 |
+ <p>- 페이코(PAYCO) 결제 영수증은 페이코를 통해 발급받으실 수 있습니다.</p> |
|
| 1311 |
+ </div> |
|
| 1312 |
+ </td> |
|
| 1313 |
+ </tr> |
|
| 1314 |
+ </tbody> |
|
| 1315 |
+ </table> |
|
| 1316 |
+ </div> |
|
| 1317 |
+ <!-- //페이코 --> |
|
| 1318 |
+ |
|
| 1157 | 1319 |
</div> |
| 1158 | 1320 |
</div><!-- 결제관리 - 결제하기 --> |
| 1159 | 1321 |
</div><!--// send top --> |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayViewV2.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayViewV2.jsp
... | ... | @@ -7,7 +7,7 @@ |
| 7 | 7 |
<%@ taglib prefix="ec" uri="/WEB-INF/tld/ecnet_tld.tld"%> |
| 8 | 8 |
|
| 9 | 9 |
<style> |
| 10 |
- .charg_cont .area_tab li{ width: calc((100% - 80px)/5);}
|
|
| 10 |
+ /*.charg_cont .area_tab li{ width: calc((100% - 80px)/5);}*/
|
|
| 11 | 11 |
</style> |
| 12 | 12 |
|
| 13 | 13 |
<!-- KG 모빌리언스 --> |
... | ... | @@ -128,16 +128,16 @@ |
| 128 | 128 |
document.pgForm.action = "/web/member/pay/PayActionAjax.do"; |
| 129 | 129 |
|
| 130 | 130 |
if ($currentTab == 0) {
|
| 131 |
- payMethod = "SPAY"; |
|
| 132 |
- } else if ($currentTab == 1) {
|
|
| 133 | 131 |
payMethod = "CARD"; |
| 134 |
- } else if ($currentTab == 2) {
|
|
| 132 |
+ } else if ($currentTab == 1) {
|
|
| 135 | 133 |
payMethod = "VBANK"; |
| 136 |
- } else if ($currentTab==3) {
|
|
| 134 |
+ } else if ($currentTab==2) {
|
|
| 137 | 135 |
payMethod = "CELLPHONE"; |
| 138 |
- } else if ($currentTab==4) {
|
|
| 136 |
+ } else if ($currentTab==3) {
|
|
| 139 | 137 |
payMethod = "BANK"; |
| 140 |
- } |
|
| 138 |
+ } else {
|
|
| 139 |
+ payMethod = "SPAY"; |
|
| 140 |
+ } |
|
| 141 | 141 |
$('input[name=payMethod]').val(payMethod);
|
| 142 | 142 |
|
| 143 | 143 |
//결제수단 상태 체크 |
... | ... | @@ -162,29 +162,40 @@ |
| 162 | 162 |
var popupY = scY + (docHeight - 195) / 2; |
| 163 | 163 |
|
| 164 | 164 |
// 결제창 호출 |
| 165 |
- if ($currentTab == 0) {
|
|
| 166 |
- // KG 모빌리언스 => SPAY(간편결제) |
|
| 167 |
- kgmPayCardRequest(); |
|
| 168 |
- } else if ($currentTab == 1) {
|
|
| 165 |
+ if ($currentTab == 0) {
|
|
| 169 | 166 |
// 나이스페이 => CARD(카드결제) |
| 170 | 167 |
pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
| 171 | 168 |
|
| 172 | 169 |
document.pgForm.method = "post"; |
| 173 | 170 |
document.pgForm.target = "pg_opener" ; |
| 174 | 171 |
document.pgForm.submit(); |
| 175 |
- } else if ($currentTab == 2) {
|
|
| 172 |
+ } else if ($currentTab == 1) {
|
|
| 176 | 173 |
// 전용계좌 |
| 177 |
- } else if ($currentTab == 3) {
|
|
| 174 |
+ } else if ($currentTab == 2) {
|
|
| 178 | 175 |
// KG 모빌리언스 => MOBILE(휴대폰결제) |
| 179 | 176 |
kgmPayMobileRequest(); |
| 180 |
- } else if ($currentTab==4) {
|
|
| 177 |
+ } else if ($currentTab==3) {
|
|
| 181 | 178 |
// KG 모빌리언스 => BANK(즉시이체) |
| 182 | 179 |
kgmPayBankRequest(); |
| 183 |
- } |
|
| 180 |
+ } else {
|
|
| 181 |
+ var cnDirect = ""; |
|
| 182 |
+ if ($currentTab == 4) {
|
|
| 183 |
+ cnDirect = "NAV:00:N"; // 네이버페이 |
|
| 184 |
+ } else if ($currentTab==5) {
|
|
| 185 |
+ cnDirect = "KKO:00:N"; // 카카오페이 |
|
| 186 |
+ } else if ($currentTab==6) {
|
|
| 187 |
+ cnDirect = "TOS:00:N"; // 토스페이 |
|
| 188 |
+ } else if ($currentTab==7) {
|
|
| 189 |
+ cnDirect = "PYC:00:N"; // 페이코 |
|
| 190 |
+ } |
|
| 191 |
+ |
|
| 192 |
+ // KG 모빌리언스 => SPAY(간편결제) |
|
| 193 |
+ kgmPayCardRequest(cnDirect); |
|
| 194 |
+ } |
|
| 184 | 195 |
} |
| 185 | 196 |
|
| 186 | 197 |
//KG 모빌리언스 => CARD |
| 187 |
-function kgmPayCardRequest() {
|
|
| 198 |
+function kgmPayCardRequest(cnDirect) {
|
|
| 188 | 199 |
$.ajax({
|
| 189 | 200 |
type: "POST", |
| 190 | 201 |
url: "/web/member/pay/kgmCardEncodeAjax.do", |
... | ... | @@ -221,7 +232,7 @@ |
| 221 | 232 |
form.Termregno.value = data.Termregno; |
| 222 | 233 |
form.APP_SCHEME.value = data.APP_SCHEME; |
| 223 | 234 |
form.CN_FIXCARDCD.value = data.CN_FIXCARDCD; |
| 224 |
- form.CN_DIRECT.value = data.CN_DIRECT; |
|
| 235 |
+ form.CN_DIRECT.value = cnDirect; |
|
| 225 | 236 |
form.CN_INSTALL.value = data.CN_INSTALL; |
| 226 | 237 |
form.Deposit.value = data.Deposit; |
| 227 | 238 |
|
... | ... | @@ -701,92 +712,20 @@ |
| 701 | 712 |
<div> |
| 702 | 713 |
<p class="tab_tit">충전수단 선택</p> |
| 703 | 714 |
<ul class="area_tab"> |
| 704 |
- <li class="btn_charge_simple btn_tab active"><button type="button" onclick="TabTypePay(this,'0');"><i></i>간편결제</button></li> |
|
| 705 |
- <li class="btn_charge1 btn_tab"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 715 |
+ <li class="btn_charge1 btn_tab active"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 706 | 716 |
<li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'2');" id="btnDdedicatedAccount"><i></i>전용계좌</button></li> |
| 707 |
- <!-- <li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'3');"><i></i>무통장입금</button></li> --> |
|
| 708 |
- <li class="btn_charge4 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>휴대폰결제</button></li> |
|
| 709 |
- <li class="btn_charge5 btn_tab"><button type="button" onclick="TabTypePay(this,'5');"><i></i>즉시이체</button></li> |
|
| 717 |
+ <li class="btn_charge3 btn_tab"><button type="button" onclick="TabTypePay(this,'3');"><i></i>휴대폰결제</button></li> |
|
| 718 |
+ <li class="btn_charge4 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>즉시이체</button></li> |
|
| 719 |
+ |
|
| 720 |
+ <li class="btn_charge5 btn_tab simple_pay"><button type="button" onclick="TabTypePay(this,'6');"><i></i></button></li> |
|
| 721 |
+ <li class="btn_charge6 btn_tab simple_pay"><button type="button" onclick="TabTypePay(this,'7');"><i></i></button></li> |
|
| 722 |
+ <li class="btn_charge7 btn_tab simple_pay"><button type="button" onclick="TabTypePay(this,'8');"><i></i></button></li> |
|
| 723 |
+ <li class="btn_charge8 btn_tab simple_pay"><button type="button" onclick="TabTypePay(this,'9');"><i></i></button></li> |
|
| 710 | 724 |
</ul> |
| 711 |
- <div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도 |
|
| 712 |
- 이용합니다.</label></div> |
|
| 713 |
- |
|
| 714 |
- <!-- 간편결제 --> |
|
| 715 |
- <div class="area_tabcont on" id="tab2_0"> |
|
| 716 |
- <p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 간편결제</p> |
|
| 717 |
- <table class="tType1"> |
|
| 718 |
- <caption></caption> |
|
| 719 |
- <colgroup> |
|
| 720 |
- <col style="width: 100px;"> |
|
| 721 |
- <col style="width: auto;"> |
|
| 722 |
- </colgroup> |
|
| 723 |
- <tbody> |
|
| 724 |
- <tr class="charge_content"> |
|
| 725 |
- <th scope="row">충전금액</th> |
|
| 726 |
- <td class="flex"> |
|
| 727 |
- <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 728 |
- <option value="5000">5,000</option> |
|
| 729 |
- <option value="10000">10,000</option> |
|
| 730 |
- <option value="20000">20,000</option> |
|
| 731 |
- <option value="30000">30,000</option> |
|
| 732 |
- <option value="50000" selected>50,000</option> |
|
| 733 |
- <option value="100000">100,000</option> |
|
| 734 |
- <option value="200000">200,000</option> |
|
| 735 |
- <option value="300000">300,000</option> |
|
| 736 |
- <option value="500000">500,000</option> |
|
| 737 |
- <option value="700000">700,000</option> |
|
| 738 |
- <option value="900000">900,000</option> |
|
| 739 |
- <option value="1000000">1,000,000</option> |
|
| 740 |
- <option value="1200000">1,200,000</option> |
|
| 741 |
- <option value="1500000">1,500,000</option> |
|
| 742 |
- <option value="2000000">2,000,000</option> |
|
| 743 |
- <option value="2500000">2,500,000</option> |
|
| 744 |
- <option value="3000000">3,000,000</option> |
|
| 745 |
- </select> |
|
| 746 |
- <%--<input type="text" numberOnly placeholder="금액을 입력해주세요" name="tempPrice" class="tempPrice" onfocus="this.placeholder=''" onblur="this.placeholder='금액을 입력해주세요'"> |
|
| 747 |
- <p class="input_in">원</p> |
|
| 748 |
- <button type="button" class="btnType1" onclick="setPrice(this , '3000'); return false;">+ 3천원</button> |
|
| 749 |
- <button type="button" onclick="setPrice(this , '5000'); return false;">+ 5천원</button> |
|
| 750 |
- <button type="button" onclick="setPrice(this , '10000'); return false;">+ 1만원</button> |
|
| 751 |
- <button type="button" onclick="setPrice(this , '100000'); return false;">+ 10만원</button> |
|
| 752 |
- <button type="button" onclick="setPrice(this , '1000000'); return false;">+ 100만원</button>--%> |
|
| 753 |
- <p class="input_in">원</p> |
|
| 754 |
- <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 755 |
- </td> |
|
| 756 |
- </tr> |
|
| 757 |
- <tr> |
|
| 758 |
- <td colspan="2"> |
|
| 759 |
- <div class="amount_wrap"> |
|
| 760 |
- <dl> |
|
| 761 |
- <dt>최종 결제금액 :</dt> |
|
| 762 |
- <dd> |
|
| 763 |
- <ul> |
|
| 764 |
- <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 765 |
- <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 766 |
- <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 767 |
- </ul> |
|
| 768 |
- </dd> |
|
| 769 |
- </dl> |
|
| 770 |
- <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 771 |
- </div> |
|
| 772 |
- </td> |
|
| 773 |
- </tr> |
|
| 774 |
- <tr> |
|
| 775 |
- <td colspan="2"> |
|
| 776 |
- <div class="area_text"> |
|
| 777 |
- <%--<p><span class="c_222222">- 신용카드 결제가 어려우신 고객께서는 문자온 고객센터(010-8432-9333)를 통해서도 ARS 신용카드 결제를 하실 수 있습니다.</span></p>--%> |
|
| 778 |
- <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 779 |
- <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 780 |
- </div> |
|
| 781 |
- </td> |
|
| 782 |
- </tr> |
|
| 783 |
- </tbody> |
|
| 784 |
- </table> |
|
| 785 |
- </div> |
|
| 786 |
- <!-- //간편결제 --> |
|
| 725 |
+ <div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도 이용합니다.</label></div> |
|
| 787 | 726 |
|
| 788 | 727 |
<!-- 신용카드 --> |
| 789 |
- <div class="area_tabcont" id="tab2_1"> |
|
| 728 |
+ <div class="area_tabcont on" id="tab2_1"> |
|
| 790 | 729 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 신용카드</p> |
| 791 | 730 |
<table class="tType1"> |
| 792 | 731 |
<caption></caption> |
... | ... | @@ -961,7 +900,7 @@ |
| 961 | 900 |
<!-- //전용계좌 --> |
| 962 | 901 |
|
| 963 | 902 |
<!-- 휴대폰 --> |
| 964 |
- <div class="area_tabcont" id="tab2_4"> |
|
| 903 |
+ <div class="area_tabcont" id="tab2_3"> |
|
| 965 | 904 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging4_small.png" alt=""> 휴대폰결제</p> |
| 966 | 905 |
<table class="tType1"> |
| 967 | 906 |
<caption></caption> |
... | ... | @@ -1025,7 +964,7 @@ |
| 1025 | 964 |
<!-- //휴대폰 --> |
| 1026 | 965 |
|
| 1027 | 966 |
<!-- 즉시이체 --> |
| 1028 |
- <div class="area_tabcont" id="tab2_5"> |
|
| 967 |
+ <div class="area_tabcont" id="tab2_4"> |
|
| 1029 | 968 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging5_small.png" alt=""> 즉시이체</p> |
| 1030 | 969 |
<table class="tType1"> |
| 1031 | 970 |
<caption></caption> |
... | ... | @@ -1096,8 +1035,273 @@ |
| 1096 | 1035 |
</table> |
| 1097 | 1036 |
</div> |
| 1098 | 1037 |
<!-- //즉시이체 --> |
| 1099 |
- </div> |
|
| 1100 | 1038 |
|
| 1039 |
+ <!-- 네이버페이 --> |
|
| 1040 |
+ <div class="area_tabcont" id="tab2_6"> |
|
| 1041 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> 네이버페이</p> |
|
| 1042 |
+ <table class="tType1"> |
|
| 1043 |
+ <colgroup> |
|
| 1044 |
+ <col style="width: 100px;"> |
|
| 1045 |
+ <col style="width: auto;"> |
|
| 1046 |
+ </colgroup> |
|
| 1047 |
+ <tbody> |
|
| 1048 |
+ <tr class="charge_content"> |
|
| 1049 |
+ <th scope="row">충전금액</th> |
|
| 1050 |
+ <td class="flex"> |
|
| 1051 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1052 |
+ <option value="5000">5,000</option> |
|
| 1053 |
+ <option value="10000">10,000</option> |
|
| 1054 |
+ <option value="20000">20,000</option> |
|
| 1055 |
+ <option value="30000">30,000</option> |
|
| 1056 |
+ <option value="50000" selected="">50,000</option> |
|
| 1057 |
+ <option value="100000">100,000</option> |
|
| 1058 |
+ <option value="200000">200,000</option> |
|
| 1059 |
+ <option value="300000">300,000</option> |
|
| 1060 |
+ <option value="500000">500,000</option> |
|
| 1061 |
+ <option value="700000">700,000</option> |
|
| 1062 |
+ <option value="900000">900,000</option> |
|
| 1063 |
+ <option value="1000000">1,000,000</option> |
|
| 1064 |
+ <option value="1200000">1,200,000</option> |
|
| 1065 |
+ <option value="1500000">1,500,000</option> |
|
| 1066 |
+ <option value="2000000">2,000,000</option> |
|
| 1067 |
+ <option value="2500000">2,500,000</option> |
|
| 1068 |
+ <option value="3000000">3,000,000</option> |
|
| 1069 |
+ </select> |
|
| 1070 |
+ |
|
| 1071 |
+ <p class="input_in">원</p> |
|
| 1072 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1073 |
+ </td> |
|
| 1074 |
+ </tr> |
|
| 1075 |
+ <tr> |
|
| 1076 |
+ <td colspan="2"> |
|
| 1077 |
+ <div class="amount_wrap"> |
|
| 1078 |
+ <dl> |
|
| 1079 |
+ <dt>최종 결제금액 :</dt> |
|
| 1080 |
+ <dd> |
|
| 1081 |
+ <ul> |
|
| 1082 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1083 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1084 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1085 |
+ </ul> |
|
| 1086 |
+ </dd> |
|
| 1087 |
+ </dl> |
|
| 1088 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1089 |
+ </div> |
|
| 1090 |
+ </td> |
|
| 1091 |
+ </tr> |
|
| 1092 |
+ <tr> |
|
| 1093 |
+ <td colspan="2"> |
|
| 1094 |
+ <div class="area_text"> |
|
| 1095 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1096 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1097 |
+ <p>- 간편결제 시 세금계산서 및 간이영수증은 제공되지 않습니다.</p> |
|
| 1098 |
+ <p>- 네이버페이 카드 결제 영수증은 네이버페이를 통해서 발급받으실 수 있습니다.</p> |
|
| 1099 |
+ <p>- 네이버페이 포인트 사용에 따른 현금영수증 발행은 문자온 캐시 결제과정에서 결제자가 직접 선택하여야만 요청할 수 있습니다.(결제 완료 이후 문자온에서 현금영수증 처리 불가)</p> |
|
| 1100 |
+ </div> |
|
| 1101 |
+ </td> |
|
| 1102 |
+ </tr> |
|
| 1103 |
+ </tbody> |
|
| 1104 |
+ </table> |
|
| 1105 |
+ </div> |
|
| 1106 |
+ <!-- //네이버페이 --> |
|
| 1107 |
+ |
|
| 1108 |
+ <!-- 카카오페이 --> |
|
| 1109 |
+ <div class="area_tabcont current" id="tab2_7"> |
|
| 1110 |
+ <!-- 신규계좌발급 시 --> |
|
| 1111 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> 카카오페이</p> |
|
| 1112 |
+ <table class="tType1"> |
|
| 1113 |
+ <colgroup> |
|
| 1114 |
+ <col style="width: 100px;"> |
|
| 1115 |
+ <col style="width: auto;"> |
|
| 1116 |
+ </colgroup> |
|
| 1117 |
+ <tbody> |
|
| 1118 |
+ <tr class="charge_content"> |
|
| 1119 |
+ <th scope="row">충전금액</th> |
|
| 1120 |
+ <td class="flex"> |
|
| 1121 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1122 |
+ <option value="5000">5,000</option> |
|
| 1123 |
+ <option value="10000">10,000</option> |
|
| 1124 |
+ <option value="20000">20,000</option> |
|
| 1125 |
+ <option value="30000">30,000</option> |
|
| 1126 |
+ <option value="50000" selected="">50,000</option> |
|
| 1127 |
+ <option value="100000">100,000</option> |
|
| 1128 |
+ <option value="200000">200,000</option> |
|
| 1129 |
+ <option value="300000">300,000</option> |
|
| 1130 |
+ <option value="500000">500,000</option> |
|
| 1131 |
+ <option value="700000">700,000</option> |
|
| 1132 |
+ <option value="900000">900,000</option> |
|
| 1133 |
+ <option value="1000000">1,000,000</option> |
|
| 1134 |
+ <option value="1200000">1,200,000</option> |
|
| 1135 |
+ <option value="1500000">1,500,000</option> |
|
| 1136 |
+ <option value="2000000">2,000,000</option> |
|
| 1137 |
+ <option value="2500000">2,500,000</option> |
|
| 1138 |
+ <option value="3000000">3,000,000</option> |
|
| 1139 |
+ </select> |
|
| 1140 |
+ |
|
| 1141 |
+ <p class="input_in">원</p> |
|
| 1142 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1143 |
+ </td> |
|
| 1144 |
+ </tr> |
|
| 1145 |
+ <tr> |
|
| 1146 |
+ <td colspan="2"> |
|
| 1147 |
+ <div class="amount_wrap"> |
|
| 1148 |
+ <dl> |
|
| 1149 |
+ <dt>최종 결제금액 :</dt> |
|
| 1150 |
+ <dd> |
|
| 1151 |
+ <ul> |
|
| 1152 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1153 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1154 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1155 |
+ </ul> |
|
| 1156 |
+ </dd> |
|
| 1157 |
+ </dl> |
|
| 1158 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1159 |
+ </div> |
|
| 1160 |
+ </td> |
|
| 1161 |
+ </tr> |
|
| 1162 |
+ <tr> |
|
| 1163 |
+ <td colspan="2"> |
|
| 1164 |
+ <div class="area_text"> |
|
| 1165 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1166 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1167 |
+ <p>- 간편결제 시 세금계산서 및 간이영수증은 제공되지 않습니다.</p> |
|
| 1168 |
+ <p>- 카카오페이 결제에 따른 카드영수증 및 현금영수증은 카카오페이 앱을 통해서만 확인 가능합니다.</p> |
|
| 1169 |
+ </div> |
|
| 1170 |
+ </td> |
|
| 1171 |
+ </tr> |
|
| 1172 |
+ </tbody> |
|
| 1173 |
+ </table> |
|
| 1174 |
+ </div> |
|
| 1175 |
+ <!-- //카카오페이 --> |
|
| 1176 |
+ |
|
| 1177 |
+ <!-- 토스페이 --> |
|
| 1178 |
+ <div class="area_tabcont current" id="tab2_8"> |
|
| 1179 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> 토스페이</p> |
|
| 1180 |
+ <table class="tType1"> |
|
| 1181 |
+ <caption></caption> |
|
| 1182 |
+ <colgroup> |
|
| 1183 |
+ <col style="width: 100px;"> |
|
| 1184 |
+ <col style="width: auto;"> |
|
| 1185 |
+ </colgroup> |
|
| 1186 |
+ <tbody> |
|
| 1187 |
+ <tr class="charge_content"> |
|
| 1188 |
+ <th scope="row">충전금액</th> |
|
| 1189 |
+ <td class="flex"> |
|
| 1190 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1191 |
+ <option value="5000">5,000</option> |
|
| 1192 |
+ <option value="10000">10,000</option> |
|
| 1193 |
+ <option value="20000">20,000</option> |
|
| 1194 |
+ <option value="30000">30,000</option> |
|
| 1195 |
+ <option value="50000" selected="">50,000</option> |
|
| 1196 |
+ <option value="100000">100,000</option> |
|
| 1197 |
+ <option value="150000">150,000</option> |
|
| 1198 |
+ </select> |
|
| 1199 |
+ |
|
| 1200 |
+ <p class="input_in">원</p> |
|
| 1201 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1202 |
+ </td> |
|
| 1203 |
+ </tr> |
|
| 1204 |
+ <tr> |
|
| 1205 |
+ <td colspan="2"> |
|
| 1206 |
+ <div class="amount_wrap"> |
|
| 1207 |
+ <dl> |
|
| 1208 |
+ <dt>최종 결제금액 :</dt> |
|
| 1209 |
+ <dd> |
|
| 1210 |
+ <ul> |
|
| 1211 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1212 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1213 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1214 |
+ </ul> |
|
| 1215 |
+ </dd> |
|
| 1216 |
+ </dl> |
|
| 1217 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1218 |
+ </div> |
|
| 1219 |
+ </td> |
|
| 1220 |
+ </tr> |
|
| 1221 |
+ <tr> |
|
| 1222 |
+ <td colspan="2"> |
|
| 1223 |
+ <div class="area_text"> |
|
| 1224 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1225 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1226 |
+ <p>- 간편결제 시 세금계산서 및 간이영수증은 제공되지 않습니다.</p> |
|
| 1227 |
+ <p>- 토스페이 결제에 따른 카드영수증 및 현금영수증은 토스페이 앱을 통해서만 확인 가능합니다.</p> |
|
| 1228 |
+ </div> |
|
| 1229 |
+ </td> |
|
| 1230 |
+ </tr> |
|
| 1231 |
+ </tbody> |
|
| 1232 |
+ </table> |
|
| 1233 |
+ </div> |
|
| 1234 |
+ <!-- //토스페이 --> |
|
| 1235 |
+ |
|
| 1236 |
+ <!-- 페이코 --> |
|
| 1237 |
+ <div class="area_tabcont current" id="tab2_9"> |
|
| 1238 |
+ <p class="tType1_title"><img src="/publish/images/simple_small.png" alt="간편결제"> PAYCO</p> |
|
| 1239 |
+ <table class="tType1"> |
|
| 1240 |
+ <caption></caption> |
|
| 1241 |
+ <colgroup> |
|
| 1242 |
+ <col style="width: 100px;"> |
|
| 1243 |
+ <col style="width: auto;"> |
|
| 1244 |
+ </colgroup> |
|
| 1245 |
+ <tbody> |
|
| 1246 |
+ <tr class="charge_content"> |
|
| 1247 |
+ <th scope="row">충전금액</th> |
|
| 1248 |
+ <td class="flex"> |
|
| 1249 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 1250 |
+ <option value="5000">5,000</option> |
|
| 1251 |
+ <option value="10000">10,000</option> |
|
| 1252 |
+ <option value="20000">20,000</option> |
|
| 1253 |
+ <option value="30000">30,000</option> |
|
| 1254 |
+ <option value="50000" selected="">50,000</option> |
|
| 1255 |
+ <option value="100000">100,000</option> |
|
| 1256 |
+ <option value="200000">200,000</option> |
|
| 1257 |
+ <option value="300000">300,000</option> |
|
| 1258 |
+ <option value="500000">500,000</option> |
|
| 1259 |
+ <option value="700000">700,000</option> |
|
| 1260 |
+ <option value="900000">900,000</option> |
|
| 1261 |
+ <option value="1000000">1,000,000</option> |
|
| 1262 |
+ <option value="1200000">1,200,000</option> |
|
| 1263 |
+ <option value="1500000">1,500,000</option> |
|
| 1264 |
+ <option value="2000000">2,000,000</option> |
|
| 1265 |
+ <option value="2500000">2,500,000</option> |
|
| 1266 |
+ <option value="3000000">3,000,000</option> |
|
| 1267 |
+ </select> |
|
| 1268 |
+ |
|
| 1269 |
+ <p class="input_in">원</p> |
|
| 1270 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 1271 |
+ </td> |
|
| 1272 |
+ </tr> |
|
| 1273 |
+ <tr> |
|
| 1274 |
+ <td colspan="2"> |
|
| 1275 |
+ <div class="amount_wrap"> |
|
| 1276 |
+ <dl> |
|
| 1277 |
+ <dt>최종 결제금액 :</dt> |
|
| 1278 |
+ <dd> |
|
| 1279 |
+ <ul> |
|
| 1280 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 1281 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 1282 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 1283 |
+ </ul> |
|
| 1284 |
+ </dd> |
|
| 1285 |
+ </dl> |
|
| 1286 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 1287 |
+ </div> |
|
| 1288 |
+ </td> |
|
| 1289 |
+ </tr> |
|
| 1290 |
+ <tr> |
|
| 1291 |
+ <td colspan="2"> |
|
| 1292 |
+ <div class="area_text"> |
|
| 1293 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 1294 |
+ <p>- 결제사별 정책상 충전금액 제한이 있을 수 있습니다.</p> |
|
| 1295 |
+ <p>- 페이코(PAYCO) 결제 영수증은 페이코를 통해 발급받으실 수 있습니다.</p> |
|
| 1296 |
+ </div> |
|
| 1297 |
+ </td> |
|
| 1298 |
+ </tr> |
|
| 1299 |
+ </tbody> |
|
| 1300 |
+ </table> |
|
| 1301 |
+ </div> |
|
| 1302 |
+ <!-- //페이코 --> |
|
| 1303 |
+ |
|
| 1304 |
+ </div> |
|
| 1101 | 1305 |
|
| 1102 | 1306 |
<!--누적결제액별 등급 및 단가 추가 시작--> |
| 1103 | 1307 |
<div class="accrue_price" id="grdShowArea" style="display: none;"> |
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?