후불제 회원 요금 결제 내역 화면 변경
- 탭 종류 및 탭 명칭 분기 처리 - 안내 문구 텍스트 분기 처리
This commit is contained in:
parent
1dfa0ce825
commit
79cd62e56b
@ -1932,6 +1932,13 @@ public class MjonPayController {
|
||||
}
|
||||
*/
|
||||
|
||||
//후불제 회원 여부 조회
|
||||
UserManageVO userManageVO = new UserManageVO();
|
||||
userManageVO.setMberId(userId);
|
||||
userManageVO = userManageService.selectAdminSmsNoticeYn(userManageVO);
|
||||
|
||||
model.addAttribute("prePaymentYn", userManageVO.getPrePaymentYn());
|
||||
|
||||
if(pattern.equals("/web/member/pay/PayListAllAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListMobileAjax.do")
|
||||
|| pattern.equals("/web/member/pay/PayListCardAjax.do")
|
||||
@ -2099,13 +2106,6 @@ public class MjonPayController {
|
||||
return "/web/pay/PayListAllAjax";
|
||||
}
|
||||
|
||||
//후불제 회원 여부 조회
|
||||
UserManageVO userManageVO = new UserManageVO();
|
||||
userManageVO.setMberId(userId);
|
||||
userManageVO = userManageService.selectAdminSmsNoticeYn(userManageVO);
|
||||
|
||||
model.addAttribute("prePaymentYn", userManageVO.getPrePaymentYn());
|
||||
|
||||
return "/web/pay/PayList";
|
||||
}
|
||||
|
||||
|
||||
@ -199,7 +199,7 @@ function fnShowRefundPrintPopup(){
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<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 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,'6');listLoad('/web/member/pay/PayListPointAjax.do'); return false;">포인트 교환내역</button></li>
|
||||
</ul>
|
||||
</c:otherwise>
|
||||
|
||||
@ -393,7 +393,18 @@ function getMberGrdChk() {
|
||||
<div class="add_text2" style="line-height: 1.2em;">
|
||||
※ 요금 결제내역은 결제일을 기준으로 최대 6개월까지만 조회가능합니다.
|
||||
<br />
|
||||
※ 간편결제 영수증은 결제하신 서비스를 통해 제공됩니다.
|
||||
<c:choose>
|
||||
<c:when test="${prePaymentYn eq 'Y'}">
|
||||
※ 간편결제 영수증은 결제하신 서비스를 통해 제공됩니다.
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
※ 후불제 고객은 사용금액 결제수단은 계좌이체만 가능합니다. <br />
|
||||
※ 세금계산서 발행 후 매월 15일(공휴일인 경우 다음 영업일) 이전까지 계좌로 입금 부탁드립니다.<br />
|
||||
※ 입금은행 : 우리은행 <br />
|
||||
※ 입금계좌 : 1005-904-154328 <br />
|
||||
※ 받는사람 : 주식회사 아이티앤
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</div>
|
||||
<div style="padding-top: 10px;">
|
||||
<button type="button" class="level_btn" data-tooltip="level_check_popup01" id="levelIconBtn" style="display: none;">
|
||||
|
||||
@ -395,7 +395,7 @@ function fnShowPdfPrintPopup(){
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<tr>
|
||||
<td colspan="8">
|
||||
<td colspan="6">
|
||||
검색 결과가 없습니다.
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user