요금결제내역 간편결제 기능 추가후 주석처리
This commit is contained in:
parent
9eb2654403
commit
eef7b5267a
@ -1841,6 +1841,7 @@ public class MjonPayController {
|
||||
"/web/member/pay/PayListCardAjax.do",
|
||||
"/web/member/pay/PayListVBankAjax.do",
|
||||
"/web/member/pay/PayListBankAjax.do",
|
||||
"/web/member/pay/PayListSPayAjax.do",
|
||||
"/web/member/pay/PayListOfflineAjax.do",
|
||||
"/web/member/pay/PayListRefundAjax.do"
|
||||
})
|
||||
@ -1894,6 +1895,7 @@ public class MjonPayController {
|
||||
|| pattern.equals("/web/member/pay/PayListCardAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListVBankAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListBankAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListSPayAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListOfflineAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListRefundAjax.do")
|
||||
) { //전체 , 모바일, 신용카드
|
||||
@ -2024,6 +2026,11 @@ public class MjonPayController {
|
||||
mjonPayVO.setPayMethod("BANK");
|
||||
mjonPayVO.setPageType("bank");
|
||||
}
|
||||
if(pattern.equals("/web/member/pay/PayListSPayAjax.do")) { //즉시이체
|
||||
mjonPayVO.setSearchCondition2("SPAY");
|
||||
mjonPayVO.setPayMethod("SPAY");
|
||||
mjonPayVO.setPageType("SPAY");
|
||||
}
|
||||
if(pattern.equals("/web/member/pay/PayListOfflineAjax.do")) { //무통장
|
||||
mjonPayVO.setSearchCondition2("OFFLINE");
|
||||
mjonPayVO.setPayMethod("OFFLINE");
|
||||
|
||||
@ -186,9 +186,9 @@ function fnShowRefundPrintPopup(){
|
||||
<!-- tab button -->
|
||||
<ul class="tabType1">
|
||||
<li class="tab active"><button type="button" onclick="TabType5(this,'1');listLoad('/web/member/pay/PayListAllAjax.do'); return false;" >전체</button></li>
|
||||
<!-- <li class="tab"><button type="button" onclick="TabType5(this,'2');listLoad('/web/member/pay/PayListSPayAjax.do'); return false;">간편결제 결제내역</button></li>-->
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'2');listLoad('/web/member/pay/PayListVBankAjax.do'); return false;">전용계좌 결제내역</button></li>
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'3');listLoad('/web/member/pay/PayListCardAjax.do'); return false;">신용카드 결제내역</button></li>
|
||||
<!-- <li class="tab"><button type="button" onclick="TabType5(this,'4');listLoad('/web/member/pay/PayListOfflineAjax.do'); return false;">무통장입금</button></li> -->
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'4');listLoad('/web/member/pay/PayListMobileAjax.do'); return false;">휴대폰 결제내역</button></li>
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'5');listLoad('/web/member/pay/PayListBankAjax.do'); return false;">즉시이체 결제내역</button></li>
|
||||
<li class="tab"><button type="button" onclick="TabType5(this,'6');listLoad('/web/member/pay/PayListPointAjax.do'); return false;">포인트 교환내역</button></li>
|
||||
|
||||
@ -514,7 +514,7 @@ $(document).on("click", "#chkAll", function(e) {
|
||||
<c:if test="${result.rcptType eq '0'}">
|
||||
<p class="fwRg c_002c9a">간이영수증 발행완료</p>
|
||||
</c:if>
|
||||
<c:if test="${result.payMethod == 'CARD'}">
|
||||
<c:if test="${result.payMethod == 'CARD' || result.payMethod == 'SPAY'}">
|
||||
<button type="button" class="btnType btnType20" onclick="fnPrintReceipt('<c:out value="${result.tid}"/>', '<c:out value="${result.pgCode}"/>', '<c:out value="${result.svcId}"/>', '<c:out value="${result.mrctTrdNo}"/>', '<c:out value="${result.trdNo}"/>', '<c:out value="${result.regDate}"/>'); return false;">카드전표</button>
|
||||
</c:if>
|
||||
</c:if>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user