결제하기 간편결제 추가
@77556f61105dddc8448ff78879f4eca1445126b2
--- src/main/java/itn/let/mjo/event/web/MjonEventPayV2Controller.java
+++ src/main/java/itn/let/mjo/event/web/MjonEventPayV2Controller.java
... | ... | @@ -77,10 +77,8 @@ |
| 77 | 77 |
} |
| 78 | 78 |
|
| 79 | 79 |
// 하드코딩 |
| 80 |
- if(!userId.equals("nobledeco")) {
|
|
| 81 |
- if(!userId.equals("nopay")) {
|
|
| 82 |
- return "redirect:/web/main/mainPage.do"; |
|
| 83 |
- } |
|
| 80 |
+ if(!userId.equals("nobledeco") && !userId.equals("nobledeco2") && !userId.equals("nopay")) {
|
|
| 81 |
+ return "redirect:/web/main/mainPage.do"; |
|
| 84 | 82 |
} |
| 85 | 83 |
|
| 86 | 84 |
//기존 결제 내역이 있는 회원인지 확인 |
--- src/main/webapp/WEB-INF/jsp/web/event/pay/EventPayViewV2.jsp
+++ src/main/webapp/WEB-INF/jsp/web/event/pay/EventPayViewV2.jsp
... | ... | @@ -192,13 +192,15 @@ |
| 192 | 192 |
var payMethod = ""; |
| 193 | 193 |
document.pgForm.action = "/web/member/pay/PayActionAjax.do"; |
| 194 | 194 |
|
| 195 |
- if($currentTab==0){ payMethod = "CARD";}
|
|
| 196 |
- else if($currentTab==1){ payMethod = "VBANK"; }
|
|
| 197 |
- /*else if($currentTab==2){ payMethod = "TEMP_CARD"; }*/
|
|
| 198 |
- /* else if($currentTab==2){ payMethod = "CELLPHONE";
|
|
| 199 |
- document.pgForm.action = "/web/kgm/pay/KGMPayActionAjax.do"; |
|
| 200 |
- } */ //휴대폰 결제 방식 안보이도록 수정 20221117 |
|
| 201 |
- else if($currentTab==2){ payMethod = "BANK"; }
|
|
| 195 |
+ if ($currentTab == 0) {
|
|
| 196 |
+ payMethod = "CARD"; |
|
| 197 |
+ } else if ($currentTab==1) {
|
|
| 198 |
+ payMethod = "CARD"; |
|
| 199 |
+ } else if($currentTab==2){
|
|
| 200 |
+ payMethod = "VBANK"; |
|
| 201 |
+ } else if($currentTab==3){
|
|
| 202 |
+ payMethod = "BANK"; |
|
| 203 |
+ } |
|
| 202 | 204 |
$('input[name=payMethod]').val(payMethod);
|
| 203 | 205 |
|
| 204 | 206 |
//결제수단 상태 체크 |
... | ... | @@ -224,28 +226,29 @@ |
| 224 | 226 |
|
| 225 | 227 |
// 결제창 호출 |
| 226 | 228 |
if ($currentTab==0) {
|
| 227 |
- // KG 모빌리언스 => CARD(신용카드) |
|
| 229 |
+ // KG 모빌리언스 => CARD(간편결제) |
|
| 228 | 230 |
kgmPayCardRequest(); |
| 229 | 231 |
} |
| 230 |
- else if ($currentTab==2) {
|
|
| 231 |
- // KG 모빌리언스 => BANK(즉시이체) |
|
| 232 |
- kgmPayBankRequest(); |
|
| 233 |
- } |
|
| 234 |
- else {
|
|
| 235 |
- // 기타 |
|
| 232 |
+ else if ($currentTab==1) {
|
|
| 233 |
+ // 나이스페이 => CARD(카드결제) |
|
| 236 | 234 |
pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
| 237 | 235 |
|
| 238 | 236 |
document.pgForm.method = "post"; |
| 239 | 237 |
document.pgForm.target = "pg_opener" ; |
| 240 | 238 |
document.pgForm.submit(); |
| 241 |
- } |
|
| 239 |
+ } |
|
| 240 |
+ else if ($currentTab==2) {
|
|
| 241 |
+ // 전용계좌 |
|
| 242 |
+ } |
|
| 243 |
+ else if ($currentTab==3) {
|
|
| 244 |
+ // KG 모빌리언스 => BANK(즉시이체) |
|
| 245 |
+ kgmPayBankRequest(); |
|
| 246 |
+ } |
|
| 242 | 247 |
|
| 243 | 248 |
} |
| 244 | 249 |
|
| 245 | 250 |
//KG 모빌리언스 => CARD |
| 246 | 251 |
function kgmPayCardRequest() {
|
| 247 |
- $("#price").val(1100);
|
|
| 248 |
- |
|
| 249 | 252 |
$.ajax({
|
| 250 | 253 |
type: "POST", |
| 251 | 254 |
url: "/web/member/pay/kgmCardEncodeAjax.do", |
... | ... | @@ -301,8 +304,6 @@ |
| 301 | 304 |
|
| 302 | 305 |
//KG 모빌리언스 => MOBILE |
| 303 | 306 |
function kgmPayMobileRequest() {
|
| 304 |
- $("#price").val(1100);
|
|
| 305 |
- |
|
| 306 | 307 |
$.ajax({
|
| 307 | 308 |
type: "POST", |
| 308 | 309 |
url: "/web/member/pay/kgmMobileEncodeAjax.do", |
... | ... | @@ -369,8 +370,6 @@ |
| 369 | 370 |
|
| 370 | 371 |
//KG 모빌리언스 => BANK |
| 371 | 372 |
function kgmPayBankRequest() {
|
| 372 |
- $("#price").val(1100);
|
|
| 373 |
- |
|
| 374 | 373 |
$.ajax({
|
| 375 | 374 |
type: "POST", |
| 376 | 375 |
url: "/web/member/pay/kgmBankEncodeAjax.do", |
... | ... | @@ -810,17 +809,75 @@ |
| 810 | 809 |
<div> |
| 811 | 810 |
<p class="tab_tit">충전수단 선택</p> |
| 812 | 811 |
<ul class="area_tab type03"> |
| 813 |
- <li class="btn_charge1 btn_tab active"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 812 |
+ <li class="btn_charge0 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> |
|
| 814 | 814 |
<li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'2');" id="btnDdedicatedAccount"><i></i>전용계좌</button></li> |
| 815 |
- <!-- <li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'3');"><i></i>무통장입금</button></li> --> |
|
| 816 |
- <!-- <li class="btn_charge4 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>휴대폰결제</button></li> --> |
|
| 817 | 815 |
<li class="btn_charge5 btn_tab"><button type="button" onclick="TabTypePay(this,'5');"><i></i>즉시이체</button></li> |
| 818 | 816 |
</ul> |
| 819 | 817 |
<div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도 |
| 820 | 818 |
이용합니다.</label></div> |
| 821 | 819 |
|
| 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>- 카드사별 정책상 충전금액 제한이 있을 수 있습니다. 단, ARS 신용카드 결제는 충전금액 제한 없이 이용하실 수 있습니다.</p> |
|
| 871 |
+ </div> |
|
| 872 |
+ </td> |
|
| 873 |
+ </tr> |
|
| 874 |
+ </tbody> |
|
| 875 |
+ </table> |
|
| 876 |
+ </div> |
|
| 877 |
+ <!-- //간편결제 --> |
|
| 878 |
+ |
|
| 822 | 879 |
<!-- 신용카드 --> |
| 823 |
- <div class="area_tabcont on" id="tab2_1"> |
|
| 880 |
+ <div class="area_tabcont" id="tab2_1"> |
|
| 824 | 881 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 신용카드</p> |
| 825 | 882 |
<table class="tType1"> |
| 826 | 883 |
<caption></caption> |
--- src/main/webapp/WEB-INF/jsp/web/pay/PayViewV2.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayViewV2.jsp
... | ... | @@ -117,14 +117,18 @@ |
| 117 | 117 |
|
| 118 | 118 |
var payMethod = ""; |
| 119 | 119 |
document.pgForm.action = "/web/member/pay/PayActionAjax.do"; |
| 120 |
- |
|
| 121 |
- if($currentTab==0){ payMethod = "CARD";}
|
|
| 122 |
- else if($currentTab==1){ payMethod = "VBANK"; }
|
|
| 123 |
- /*else if($currentTab==2){ payMethod = "TEMP_CARD"; }*/
|
|
| 124 |
- else if($currentTab==2){ payMethod = "CELLPHONE";
|
|
| 125 |
- document.pgForm.action = "/web/kgm/pay/KGMPayActionAjax.do"; |
|
| 120 |
+ |
|
| 121 |
+ if ($currentTab == 0) {
|
|
| 122 |
+ payMethod = "CARD"; |
|
| 123 |
+ } else if ($currentTab == 1) {
|
|
| 124 |
+ payMethod = "CARD"; |
|
| 125 |
+ } else if ($currentTab == 2) {
|
|
| 126 |
+ payMethod = "VBANK"; |
|
| 127 |
+ } else if ($currentTab==3) {
|
|
| 128 |
+ payMethod = "CELLPHONE"; |
|
| 129 |
+ } else if ($currentTab==4) {
|
|
| 130 |
+ payMethod = "BANK"; |
|
| 126 | 131 |
} |
| 127 |
- else if($currentTab==3){ payMethod = "BANK"; }
|
|
| 128 | 132 |
$('input[name=payMethod]').val(payMethod);
|
| 129 | 133 |
|
| 130 | 134 |
//결제수단 상태 체크 |
... | ... | @@ -149,33 +153,29 @@ |
| 149 | 153 |
var popupY = scY + (docHeight - 195) / 2; |
| 150 | 154 |
|
| 151 | 155 |
// 결제창 호출 |
| 152 |
- if ($currentTab==0) {
|
|
| 153 |
- // KG 모빌리언스 => CARD(신용카드) |
|
| 156 |
+ if ($currentTab == 0) {
|
|
| 157 |
+ // KG 모빌리언스 => CARD(간편결제) |
|
| 154 | 158 |
kgmPayCardRequest(); |
| 155 |
- } |
|
| 156 |
- else if ($currentTab==2) {
|
|
| 159 |
+ } else if ($currentTab == 1) {
|
|
| 160 |
+ // 나이스페이 => CARD(카드결제) |
|
| 161 |
+ pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
|
| 162 |
+ |
|
| 163 |
+ document.pgForm.method = "post"; |
|
| 164 |
+ document.pgForm.target = "pg_opener" ; |
|
| 165 |
+ document.pgForm.submit(); |
|
| 166 |
+ } else if ($currentTab == 2) {
|
|
| 167 |
+ // 전용계좌 |
|
| 168 |
+ } else if ($currentTab == 3) {
|
|
| 157 | 169 |
// KG 모빌리언스 => MOBILE(휴대폰결제) |
| 158 | 170 |
kgmPayMobileRequest(); |
| 159 |
- } |
|
| 160 |
- else if ($currentTab==3) {
|
|
| 171 |
+ } else if ($currentTab==4) {
|
|
| 161 | 172 |
// KG 모빌리언스 => BANK(즉시이체) |
| 162 | 173 |
kgmPayBankRequest(); |
| 163 | 174 |
} |
| 164 |
- else {
|
|
| 165 |
- // 기타 |
|
| 166 |
- pg_opener = window.open('', 'pg_opener', "width=790, height=505, left="+popupX+", top="+popupY, "location = no","status= no","toolbars= no");
|
|
| 167 |
- |
|
| 168 |
- document.pgForm.method = "post"; |
|
| 169 |
- document.pgForm.target = "pg_opener" ; |
|
| 170 |
- document.pgForm.submit(); |
|
| 171 |
- } |
|
| 172 |
- |
|
| 173 | 175 |
} |
| 174 | 176 |
|
| 175 | 177 |
//KG 모빌리언스 => CARD |
| 176 | 178 |
function kgmPayCardRequest() {
|
| 177 |
- $("#price").val(1100);
|
|
| 178 |
- |
|
| 179 | 179 |
$.ajax({
|
| 180 | 180 |
type: "POST", |
| 181 | 181 |
url: "/web/member/pay/kgmCardEncodeAjax.do", |
... | ... | @@ -231,8 +231,6 @@ |
| 231 | 231 |
|
| 232 | 232 |
//KG 모빌리언스 => MOBILE |
| 233 | 233 |
function kgmPayMobileRequest() {
|
| 234 |
- $("#price").val(1100);
|
|
| 235 |
- |
|
| 236 | 234 |
$.ajax({
|
| 237 | 235 |
type: "POST", |
| 238 | 236 |
url: "/web/member/pay/kgmMobileEncodeAjax.do", |
... | ... | @@ -299,8 +297,6 @@ |
| 299 | 297 |
|
| 300 | 298 |
//KG 모빌리언스 => BANK |
| 301 | 299 |
function kgmPayBankRequest() {
|
| 302 |
- $("#price").val(1100);
|
|
| 303 |
- |
|
| 304 | 300 |
$.ajax({
|
| 305 | 301 |
type: "POST", |
| 306 | 302 |
url: "/web/member/pay/kgmBankEncodeAjax.do", |
... | ... | @@ -643,7 +639,8 @@ |
| 643 | 639 |
<div> |
| 644 | 640 |
<p class="tab_tit">충전수단 선택</p> |
| 645 | 641 |
<ul class="area_tab"> |
| 646 |
- <li class="btn_charge1 btn_tab active"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 642 |
+ <li class="btn_charge0 btn_tab active"><button type="button" onclick="TabTypePay(this,'0');"><i></i>간편결제</button></li> |
|
| 643 |
+ <li class="btn_charge1 btn_tab"><button type="button" onclick="TabTypePay(this,'1');"><i></i>신용카드</button></li> |
|
| 647 | 644 |
<li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'2');" id="btnDdedicatedAccount"><i></i>전용계좌</button></li> |
| 648 | 645 |
<!-- <li class="btn_charge2 btn_tab"><button type="button" onclick="TabTypePay(this,'3');"><i></i>무통장입금</button></li> --> |
| 649 | 646 |
<li class="btn_charge4 btn_tab"><button type="button" onclick="TabTypePay(this,'4');"><i></i>휴대폰결제</button></li> |
... | ... | @@ -652,8 +649,82 @@ |
| 652 | 649 |
<div class="checkbox_wrap"><input type="checkbox" id="agree"><label for="agree">선택한 수단을 다음 충전 시에도 |
| 653 | 650 |
이용합니다.</label></div> |
| 654 | 651 |
|
| 652 |
+ <!-- 간편결제 --> |
|
| 653 |
+ <div class="area_tabcont on" id="tab2_0"> |
|
| 654 |
+ <p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 간편결제</p> |
|
| 655 |
+ <table class="tType1"> |
|
| 656 |
+ <caption></caption> |
|
| 657 |
+ <colgroup> |
|
| 658 |
+ <col style="width: 100px;"> |
|
| 659 |
+ <col style="width: auto;"> |
|
| 660 |
+ </colgroup> |
|
| 661 |
+ <tbody> |
|
| 662 |
+ <tr class="charge_content"> |
|
| 663 |
+ <th scope="row">충전금액</th> |
|
| 664 |
+ <td class="flex"> |
|
| 665 |
+ <select name="tempPrice" id="tempPrice" class="list_seType1"> |
|
| 666 |
+ <option value="5000">5,000</option> |
|
| 667 |
+ <option value="10000">10,000</option> |
|
| 668 |
+ <option value="20000">20,000</option> |
|
| 669 |
+ <option value="30000">30,000</option> |
|
| 670 |
+ <option value="50000" selected>50,000</option> |
|
| 671 |
+ <option value="100000">100,000</option> |
|
| 672 |
+ <option value="200000">200,000</option> |
|
| 673 |
+ <option value="300000">300,000</option> |
|
| 674 |
+ <option value="500000">500,000</option> |
|
| 675 |
+ <option value="700000">700,000</option> |
|
| 676 |
+ <option value="900000">900,000</option> |
|
| 677 |
+ <option value="1000000">1,000,000</option> |
|
| 678 |
+ <option value="1200000">1,200,000</option> |
|
| 679 |
+ <option value="1500000">1,500,000</option> |
|
| 680 |
+ <option value="2000000">2,000,000</option> |
|
| 681 |
+ <option value="2500000">2,500,000</option> |
|
| 682 |
+ <option value="3000000">3,000,000</option> |
|
| 683 |
+ </select> |
|
| 684 |
+ <%--<input type="text" numberOnly placeholder="금액을 입력해주세요" name="tempPrice" class="tempPrice" onfocus="this.placeholder=''" onblur="this.placeholder='금액을 입력해주세요'"> |
|
| 685 |
+ <p class="input_in">원</p> |
|
| 686 |
+ <button type="button" class="btnType1" onclick="setPrice(this , '3000'); return false;">+ 3천원</button> |
|
| 687 |
+ <button type="button" onclick="setPrice(this , '5000'); return false;">+ 5천원</button> |
|
| 688 |
+ <button type="button" onclick="setPrice(this , '10000'); return false;">+ 1만원</button> |
|
| 689 |
+ <button type="button" onclick="setPrice(this , '100000'); return false;">+ 10만원</button> |
|
| 690 |
+ <button type="button" onclick="setPrice(this , '1000000'); return false;">+ 100만원</button>--%> |
|
| 691 |
+ <p class="input_in">원</p> |
|
| 692 |
+ <!-- <span class="reqTxt6">※ 최소 3천원 이상부터 결제 가능합니다.</span> --> |
|
| 693 |
+ </td> |
|
| 694 |
+ </tr> |
|
| 695 |
+ <tr> |
|
| 696 |
+ <td colspan="2"> |
|
| 697 |
+ <div class="amount_wrap"> |
|
| 698 |
+ <dl> |
|
| 699 |
+ <dt>최종 결제금액 :</dt> |
|
| 700 |
+ <dd> |
|
| 701 |
+ <ul> |
|
| 702 |
+ <li><strong id="supplyPriceStr"></strong>원(공급가액)</li> |
|
| 703 |
+ <li><span class="plus"></span><strong id="vatPriceStr"></strong>원(부가세)</li> |
|
| 704 |
+ <li class="total"><span class="equal"></span><strong id="lastPriceStr"></strong>원(최종금액)</li> |
|
| 705 |
+ </ul> |
|
| 706 |
+ </dd> |
|
| 707 |
+ </dl> |
|
| 708 |
+ <button type="button" class="btnType" onclick="pgOpenerPopup(); return false;">충전하기</button> |
|
| 709 |
+ </div> |
|
| 710 |
+ </td> |
|
| 711 |
+ </tr> |
|
| 712 |
+ <tr> |
|
| 713 |
+ <td colspan="2"> |
|
| 714 |
+ <div class="area_text"> |
|
| 715 |
+ <%--<p><span class="c_222222">- 신용카드 결제가 어려우신 고객께서는 문자온 고객센터(010-8432-9333)를 통해서도 ARS 신용카드 결제를 하실 수 있습니다.</span></p>--%> |
|
| 716 |
+ <p>- 인터넷 익스플로러 이용 고객께서는 도구-팝업 차단 해제 후 충전이 가능합니다.</p> |
|
| 717 |
+ <p>- 카드사별 정책상 충전금액 제한이 있을 수 있습니다. 단, ARS 신용카드 결제는 충전금액 제한 없이 이용하실 수 있습니다.</p> |
|
| 718 |
+ </div> |
|
| 719 |
+ </td> |
|
| 720 |
+ </tr> |
|
| 721 |
+ </tbody> |
|
| 722 |
+ </table> |
|
| 723 |
+ </div> |
|
| 724 |
+ <!-- //간편결제 --> |
|
| 725 |
+ |
|
| 655 | 726 |
<!-- 신용카드 --> |
| 656 |
- <div class="area_tabcont on" id="tab2_1"> |
|
| 727 |
+ <div class="area_tabcont" id="tab2_1"> |
|
| 657 | 728 |
<p class="tType1_title"><img src="/publish/images/content/icon_charging1_small.png" alt=""> 신용카드</p> |
| 658 | 729 |
<table class="tType1"> |
| 659 | 730 |
<caption></caption> |
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?