요금결제내역 간편결제 기능 추가후 주석처리
@eef7b5267a2563305bda8d796eb84b4d0a375681
--- src/main/java/itn/let/mjo/pay/web/MjonPayController.java
+++ src/main/java/itn/let/mjo/pay/web/MjonPayController.java
... | ... | @@ -1841,6 +1841,7 @@ |
| 1841 | 1841 |
"/web/member/pay/PayListCardAjax.do", |
| 1842 | 1842 |
"/web/member/pay/PayListVBankAjax.do", |
| 1843 | 1843 |
"/web/member/pay/PayListBankAjax.do", |
| 1844 |
+ "/web/member/pay/PayListSPayAjax.do", |
|
| 1844 | 1845 |
"/web/member/pay/PayListOfflineAjax.do", |
| 1845 | 1846 |
"/web/member/pay/PayListRefundAjax.do" |
| 1846 | 1847 |
}) |
... | ... | @@ -1894,6 +1895,7 @@ |
| 1894 | 1895 |
|| pattern.equals("/web/member/pay/PayListCardAjax.do")
|
| 1895 | 1896 |
|| pattern.equals("/web/member/pay/PayListVBankAjax.do")
|
| 1896 | 1897 |
|| pattern.equals("/web/member/pay/PayListBankAjax.do")
|
| 1898 |
+ || pattern.equals("/web/member/pay/PayListSPayAjax.do")
|
|
| 1897 | 1899 |
|| pattern.equals("/web/member/pay/PayListOfflineAjax.do")
|
| 1898 | 1900 |
|| pattern.equals("/web/member/pay/PayListRefundAjax.do")
|
| 1899 | 1901 |
) { //전체 , 모바일, 신용카드
|
... | ... | @@ -2024,6 +2026,11 @@ |
| 2024 | 2026 |
mjonPayVO.setPayMethod("BANK");
|
| 2025 | 2027 |
mjonPayVO.setPageType("bank");
|
| 2026 | 2028 |
} |
| 2029 |
+ if(pattern.equals("/web/member/pay/PayListSPayAjax.do")) { //즉시이체
|
|
| 2030 |
+ mjonPayVO.setSearchCondition2("SPAY");
|
|
| 2031 |
+ mjonPayVO.setPayMethod("SPAY");
|
|
| 2032 |
+ mjonPayVO.setPageType("SPAY");
|
|
| 2033 |
+ } |
|
| 2027 | 2034 |
if(pattern.equals("/web/member/pay/PayListOfflineAjax.do")) { //무통장
|
| 2028 | 2035 |
mjonPayVO.setSearchCondition2("OFFLINE");
|
| 2029 | 2036 |
mjonPayVO.setPayMethod("OFFLINE");
|
--- src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayList.jsp
... | ... | @@ -186,9 +186,9 @@ |
| 186 | 186 |
<!-- tab button --> |
| 187 | 187 |
<ul class="tabType1"> |
| 188 | 188 |
<li class="tab active"><button type="button" onclick="TabType5(this,'1');listLoad('/web/member/pay/PayListAllAjax.do'); return false;" >전체</button></li>
|
| 189 |
+ <!-- <li class="tab"><button type="button" onclick="TabType5(this,'2');listLoad('/web/member/pay/PayListSPayAjax.do'); return false;">간편결제 결제내역</button></li>-->
|
|
| 189 | 190 |
<li class="tab"><button type="button" onclick="TabType5(this,'2');listLoad('/web/member/pay/PayListVBankAjax.do'); return false;">전용계좌 결제내역</button></li>
|
| 190 | 191 |
<li class="tab"><button type="button" onclick="TabType5(this,'3');listLoad('/web/member/pay/PayListCardAjax.do'); return false;">신용카드 결제내역</button></li>
|
| 191 |
- <!-- <li class="tab"><button type="button" onclick="TabType5(this,'4');listLoad('/web/member/pay/PayListOfflineAjax.do'); return false;">무통장입금</button></li> -->
|
|
| 192 | 192 |
<li class="tab"><button type="button" onclick="TabType5(this,'4');listLoad('/web/member/pay/PayListMobileAjax.do'); return false;">휴대폰 결제내역</button></li>
|
| 193 | 193 |
<li class="tab"><button type="button" onclick="TabType5(this,'5');listLoad('/web/member/pay/PayListBankAjax.do'); return false;">즉시이체 결제내역</button></li>
|
| 194 | 194 |
<li class="tab"><button type="button" onclick="TabType5(this,'6');listLoad('/web/member/pay/PayListPointAjax.do'); return false;">포인트 교환내역</button></li>
|
--- src/main/webapp/WEB-INF/jsp/web/pay/PayListAllAjax.jsp
+++ src/main/webapp/WEB-INF/jsp/web/pay/PayListAllAjax.jsp
... | ... | @@ -514,7 +514,7 @@ |
| 514 | 514 |
<c:if test="${result.rcptType eq '0'}">
|
| 515 | 515 |
<p class="fwRg c_002c9a">간이영수증 발행완료</p> |
| 516 | 516 |
</c:if> |
| 517 |
- <c:if test="${result.payMethod == 'CARD'}">
|
|
| 517 |
+ <c:if test="${result.payMethod == 'CARD' || result.payMethod == 'SPAY'}">
|
|
| 518 | 518 |
<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>
|
| 519 | 519 |
</c:if> |
| 520 | 520 |
</c:if> |
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?