728x90
반응형
결제 방법에 따라 조회하는 주소가 다르다 (=cmd파라미터 값이 다름)
<script type="text/javascript">
/* 신용카드,계좌이체,가상계좌 영수증 */
function receiptView( tno, ordr_idxx, amount, cmd )
{
receiptWin = "https://admin8.kcp.co.kr/assist/bill.BillActionNew.do?cmd=";
receiptWin += cmd + "&";
receiptWin += "tno=" + tno + "&";
receiptWin += "order_no=" + ordr_idxx + "&";
receiptWin += "trade_mony=" + amount ;
window.open(receiptWin, "", "width=455, height=815");
}
/* 현금 영수증 */
function receiptView2( site_cd, order_id, bill_yn, auth_no )
{
receiptWin2 = "https://testadmin8.kcp.co.kr/Modules/Service/Cash/Cash_Bill_Common_View.jsp";
receiptWin2 += "?";
receiptWin2 += "term_id=PGNW" + site_cd + "&";
receiptWin2 += "orderid=" + order_id + "&";
receiptWin2 += "bill_yn=" + bill_yn + "&";
receiptWin2 += "authno=" + auth_no ;
window.open(receiptWin2, "", "width=370, height=625");
}
/* 가상 계좌 모의입금 페이지 호출 */
/* 테스트시에만 사용가능 */
/* 실결제시 해당 스크립트 주석처리 */
function receiptView3()
{
receiptWin3 = "http://devadmin.kcp.co.kr/Modules/Noti/TEST_Vcnt_Noti.jsp";
window.open(receiptWin3, "", "width=520, height=300");
}
</script>
<? if ($PAY_resultMsg) { ?>
<? if ($결제완료 변수 == "Y") { ?>
<? if($결제수단 변수 == "credit"){ //카드 ?>
<a href="javascript:receiptView('<?= $PAY_tid ?>', '주문번호', '결제금액', 'card_bill' )" class="btn_w11"><span>KCP 영수증</span></a>
<? }else if ($결제수단 변수 == "transfer") { //계좌이체 ?>
<a href="javascript:receiptView('<?= $PAY_tid ?>', '주문번호', '결제금액', 'acnt_bill' )" class="btn_w11"><span>KCP 영수증</span></a>
<? } else if ($결제수단 변수 == "bank") { //무통장입금 ?>
<a href="javascript:receiptView('<?= $PAY_tid ?>', '주문번호', '결제금액', 'vcnt_bill' )" class="btn_w11"><span>KCP 영수증</span></a>
<? }
}
} ?>
728x90
반응형