File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%--
Class Name : SendNumberList.jsp
Description : 발신번호 리스트 조회 페이지
Modification Information
수정일 수정자 수정내용
------- -------- ---------------------------
2021.03.31 신명섭 최초 생성
Copyright (C) 2009 by ITN All right reserved.
--%>
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="ec" uri="/WEB-INF/tld/ecnet_tld.tld"%>
<%@ taglib prefix="compress" uri="http://htmlcompressor.googlecode.com/taglib/compressor"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<title>환불요청 리스트</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="<c:url value='/js/EgovMultiFile.js'/>"></script>
<script type="text/javaScript" language="javascript">
</script>
</head>
<body>
<!-- 결제내역 -->
<div class="tableWrap">
<table class="tbType1">
<colgroup>
<col style="width: 2%">
<col style="width: 6%">
<col style="width: 4%">
<col style="width: 5%">
<col style="width: 15%">
<col style="width: 5%">
<col style="width: 8%">
<col style="width: 8%">
</colgroup>
<thead>
<tr>
<th>번호</th>
<th>결제금액</th>
<th>충전포인트</th>
<th>결제수단</th>
<th>주문번호(PG사)</th>
<th>결제상태</th>
<th>결제시간</th>
<th>처리</th>
</tr>
</thead>
<tbody>
<c:forEach var="result" items="${resultList}" varStatus="status">
<tr>
<input type="hidden" id="moid" name="moid" value="<c:out value="${result.moid}"/>">
<td>
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
</c:if>
<c:if test="${searchVO.searchSortOrd eq 'asc' }">
<c:out value="${(paginationInfo.currentPageNo - 1) * paginationInfo.recordCountPerPage + status.count}"/>
</c:if>
</td>
<td>
<c:if test="${'0' eq result.pgStatus
|| '1' eq result.pgStatus
|| '4' eq result.pgStatus
|| '9' eq result.pgStatus
}"><fmt:formatNumber value="${result.amt}" type="number" /><c:if test="${'4' eq result.pgStatus}"><font color="red">(오류)</font></c:if>
</c:if>
</td>
<td>
<fmt:formatNumber value="${result.point}" type="number" />
</td>
<td><c:out value="${result.payMethodTxt}"/></td>
<td><c:out value="${result.tid}"/></td>
<td><c:out value="${result.pgStatusTxt}"/></td>
<td><c:out value="${result.regDate}"/></td>
<!-- 가장 최근 결재 건만 결제 취소 가능 -->
<td>
<%-- <c:if test="${status.count eq '1'}"> --%>
<%-- <c:if test="${refundVO.refundStatus eq '1'}"> --%>
<c:if test="${result.payMethod ne 'VBANK'}">
<!-- 결제 종류 (payMethod)
"CARD" : 신용카드
"BANK" : 즉시이체
"CELLPHONE" : 휴대폰결제
"VBANK" : 전용계좌
"SSG_BANK" : ??
"CMS_BANK" : ?? -->
<!-- 결제완료 시 -->
<!-- mj_pg테이블 pg_status 상태 -->
<!--0 입금대기-->
<!--1 결제완료-->
<!--4 결제오류-->
<!--8 취소오류-->
<!--9 취소완료-->
<%-- <button type="button" onclick="fn_payCancleDiv('<c:out value="${result.moid}"/>', '9'); return false;" class="btnType1"> --%>
<button type="button" id="btnbtn" class="btnType1 payBtn" data-info="<c:out value='${result.pgStatus }'/>">
<c:choose>
<c:when test="${result.pgStatus eq '1'}">
취소
</c:when>
<c:when test="${result.pgStatus eq '9'}">
복구
</c:when>
<c:otherwise>
</c:otherwise>
</c:choose>
</button>
<!-- 취소완료 시 -->
</c:if>
<%-- </c:if> --%>
<%-- </c:if> --%>
</td>
</tr>
</c:forEach>
<c:if test="${empty resultList}">
<tr><td colspan="8"><spring:message code="common.nodata.msg" /></td></tr>
</c:if>
</tbody>
</table>
</div>
<div class="btnWrap">
</div>
<!-- 페이지 네비게이션 시작 -->
<%-- <c:if test="${!empty refundList}"> --%>
<div class="page">
<ul class="inline">
<ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" />
</ul>
</div>
<%-- </c:if> --%>
<!-- //페이지 네비게이션 끝 -->
</body>
</html>