|
@@ -1,4 +1,12 @@
|
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
+ <th:block th:if="${payment.reqTx} == null or ${payment.reqTx} == ''">
|
|
|
|
|
+ <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
|
|
|
|
|
+ <script src="/ux/pc/js/slick.min.js"></script>
|
|
|
|
|
+ <script src="/ux/pc/js/jquery-ui.js"></script>
|
|
|
|
|
+ <script src="/ux/pc/js/jquery.modal.min.js"></script>
|
|
|
|
|
+ <script src="/ux/pc/js/jquery.ui.datepicker.monthyearpicker.js"></script>
|
|
|
|
|
+ </th:block>
|
|
|
|
|
+
|
|
|
<!-- 선택, 상점이름(영문으로 작성권장) -->
|
|
<!-- 선택, 상점이름(영문으로 작성권장) -->
|
|
|
<input type="hidden" name="site_name" th:value="${payment.siteName}" />
|
|
<input type="hidden" name="site_name" th:value="${payment.siteName}" />
|
|
|
<!-- 필수, 상점코드 -->
|
|
<!-- 필수, 상점코드 -->
|
|
@@ -22,8 +30,13 @@
|
|
|
<input type="hidden" name="currency" th:value="${payment.currency}" /> <!-- 필수, 원화 : WON / 달러 : USD -->
|
|
<input type="hidden" name="currency" th:value="${payment.currency}" /> <!-- 필수, 원화 : WON / 달러 : USD -->
|
|
|
<input type="hidden" name="shop_user_id" th:value="${payment.shopUserId}" /> <!-- 필수, 쇼핑몰회원ID 기관에 따라 RM 조치를 위해 쇼핑몰 관리 ID를 필수로 요청 -->
|
|
<input type="hidden" name="shop_user_id" th:value="${payment.shopUserId}" /> <!-- 필수, 쇼핑몰회원ID 기관에 따라 RM 조치를 위해 쇼핑몰 관리 ID를 필수로 요청 -->
|
|
|
|
|
|
|
|
|
|
+ <!-- 신용카드 정보 -->
|
|
|
<input type="hidden" name="quotaopt" th:value="${payment.quotaopt}"/> <!-- 최대 할부 개월 수(0 ~ 18까지 설정 가능) -->
|
|
<input type="hidden" name="quotaopt" th:value="${payment.quotaopt}"/> <!-- 최대 할부 개월 수(0 ~ 18까지 설정 가능) -->
|
|
|
|
|
|
|
|
|
|
+ <!-- 무통장입금 정보 -->
|
|
|
|
|
+ <input type="hidden" name="vcnt_expire_term" th:value="${payment.vcntExpireTerm}"/> <!-- 무통장입금 유효기간 설정 (3 = 3일) -->
|
|
|
|
|
+ <input type="hidden" name="disp_tax_yn" th:value="${payment.dispTaxYn}"/> <!-- 무통장입금 유효기간 설정 (3 = 3일) -->
|
|
|
|
|
+
|
|
|
<!-- 2012년 8월 18일 전자상거래법 개정 관련 설정 부분 -->
|
|
<!-- 2012년 8월 18일 전자상거래법 개정 관련 설정 부분 -->
|
|
|
<!-- 제공 기간 설정 0:일회성 1:기간설정(ex 1:2012010120120131) -->
|
|
<!-- 제공 기간 설정 0:일회성 1:기간설정(ex 1:2012010120120131) -->
|
|
|
<input type="hidden" name="good_expr" th:value="${payment.goodExpr}" />
|
|
<input type="hidden" name="good_expr" th:value="${payment.goodExpr}" />
|
|
@@ -42,7 +55,7 @@
|
|
|
<input type="hidden" name="enc_data" value=""/>
|
|
<input type="hidden" name="enc_data" value=""/>
|
|
|
<input type="hidden" name="ret_pay_method" value=""/>
|
|
<input type="hidden" name="ret_pay_method" value=""/>
|
|
|
<input type="hidden" name="tran_cd" value=""/>
|
|
<input type="hidden" name="tran_cd" value=""/>
|
|
|
- <input type="hidden" name="use_pay_method" value=""/>
|
|
|
|
|
|
|
+ <input type="hidden" name="use_pay_method" th:value="${payment.usePayMethod}"/>
|
|
|
|
|
|
|
|
<!-- 주문정보 검증 관련 정보 : 표준웹 에서 설정하는 정보입니다 -->
|
|
<!-- 주문정보 검증 관련 정보 : 표준웹 에서 설정하는 정보입니다 -->
|
|
|
<input type="hidden" name="ordr_chk" value=""/>
|
|
<input type="hidden" name="ordr_chk" value=""/>
|
|
@@ -52,4 +65,11 @@
|
|
|
<input type="hidden" name="cash_tr_code" value=""/>
|
|
<input type="hidden" name="cash_tr_code" value=""/>
|
|
|
<input type="hidden" name="cash_id_info" value=""/>
|
|
<input type="hidden" name="cash_id_info" value=""/>
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <script th:inline="javascript">
|
|
|
|
|
+ if([[${payment.reqTx}]] == null || [[${payment.reqTx}]] == "") {
|
|
|
|
|
+ receiptWin3 = "http://devadmin.kcp.co.kr/Modules/Noti/TEST_Vcnt_Noti.jsp";
|
|
|
|
|
+ window.open(receiptWin3, "", "width=520, height=300");
|
|
|
|
|
+ }
|
|
|
|
|
+ </script>
|
|
|
</html>
|
|
</html>
|