사용자 결제 리스트 현금영수증 의무발행 완료 여부 기능 추가
@f4807896a521f411e2f3a62c7627e20b881ba6ed
--- src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
+++ src/main/java/itn/let/mjo/msg/web/MjonMsgController.java
... | ... | @@ -3905,7 +3905,7 @@ |
| 3905 | 3905 |
catch(Exception e) {
|
| 3906 | 3906 |
isSuccess = false; |
| 3907 | 3907 |
msg = e.getMessage(); |
| 3908 |
- } |
|
| 3908 |
+ } |
|
| 3909 | 3909 |
|
| 3910 | 3910 |
modelAndView.addObject("memPayStatInfo", memPayStatInfo);
|
| 3911 | 3911 |
modelAndView.addObject("isSuccess", isSuccess);
|
--- src/main/resources/egovframework/sqlmap/let/pay/MjonPay_SQL_mysql.xml
+++ src/main/resources/egovframework/sqlmap/let/pay/MjonPay_SQL_mysql.xml
... | ... | @@ -100,60 +100,81 @@ |
| 100 | 100 |
, E.CONFIRM_YN AS confirmYn |
| 101 | 101 |
, E.RCPT_TYPE AS rcptType |
| 102 | 102 |
, IFNULL(MP.POINT, '0') AS point |
| 103 |
- , EMI.EVENT_PG_MOID AS eventMoid |
|
| 104 |
- , mber.SMISHING_YN AS smishingYn |
|
| 105 |
- , mber.VIP_YN AS vipYn |
|
| 106 |
- , IFNULL(mber.BLINE_CODE, 'N') AS blineCode |
|
| 107 |
- , (SELECT COUNT(0) FROM MJ_PG SP |
|
| 108 |
- WHERE SP.PG_STATUS = 1 |
|
| 109 |
- AND SP.USER_ID = A.USER_ID |
|
| 110 |
- AND SP.REG_DATE >= DATE_ADD(NOW(), INTERVAL -1 YEAR)) AS oneYearPayCnt |
|
| 111 |
- , KGM.SVC_ID AS svcId |
|
| 112 |
- , KGM.TRADE_ID AS mrctTrdNo |
|
| 113 |
- , KGM.MOBILE_ID AS trdNo |
|
| 103 |
+ , EMI.EVENT_PG_MOID AS eventMoid |
|
| 104 |
+ , mber.SMISHING_YN AS smishingYn |
|
| 105 |
+ , mber.VIP_YN AS vipYn |
|
| 106 |
+ , IFNULL(mber.BLINE_CODE, 'N') AS blineCode |
|
| 107 |
+ , (SELECT |
|
| 108 |
+ COUNT(0) FROM MJ_PG SP |
|
| 109 |
+ WHERE 1=1 |
|
| 110 |
+ AND SP.PG_STATUS = 1 |
|
| 111 |
+ AND SP.USER_ID = A.USER_ID |
|
| 112 |
+ AND SP.REG_DATE >= DATE_ADD(NOW(), INTERVAL -1 YEAR) |
|
| 113 |
+ ) AS oneYearPayCnt |
|
| 114 |
+ , KGM.SVC_ID AS svcId |
|
| 115 |
+ , KGM.TRADE_ID AS mrctTrdNo |
|
| 116 |
+ , KGM.MOBILE_ID AS trdNo |
|
| 114 | 117 |
FROM |
| 115 | 118 |
MJ_PG A |
| 116 | 119 |
LEFT JOIN |
| 117 | 120 |
( |
| 118 |
- SELECT CODE_NM |
|
| 119 |
- , CODE |
|
| 120 |
- , CODE_DC |
|
| 121 |
+ SELECT |
|
| 122 |
+ CODE_NM |
|
| 123 |
+ , CODE |
|
| 124 |
+ , CODE_DC |
|
| 121 | 125 |
FROM |
| 122 | 126 |
LETTCCMMNDETAILCODE |
| 123 | 127 |
WHERE 1=1 |
| 124 | 128 |
AND USE_AT = 'Y' |
| 125 | 129 |
AND CODE_ID = 'ITN036' |
| 126 | 130 |
) B ON A.PAY_METHOD = B.CODE |
| 127 |
- LEFT JOIN |
|
| 128 |
- ( SELECT CODE_NM ,CODE ,CODE_DC |
|
| 129 |
- FROM LETTCCMMNDETAILCODE |
|
| 130 |
- WHERE USE_AT = 'Y' |
|
| 131 |
- AND CODE_ID = 'ITN037' |
|
| 132 |
- ) C ON A.PG_STATUS = C.CODE |
|
| 133 |
- LEFT JOIN |
|
| 134 |
- ( SELECT MOID, CONFIRM_YN, RCPT_TYPE |
|
| 135 |
- FROM MJ_TAX |
|
| 136 |
- WHERE RCPT_TYPE != '3' |
|
| 137 |
- ) E ON A.MOID = E.MOID |
|
| 138 |
- LEFT JOIN |
|
| 139 |
- ( SELECT CODE_NM ,CODE ,CODE_DC |
|
| 140 |
- FROM LETTCCMMNDETAILCODE |
|
| 141 |
- WHERE USE_AT = 'Y' |
|
| 142 |
- AND CODE_ID = 'ITN038' |
|
| 143 |
- ) D ON E.RCPT_TYPE = D.CODE |
|
| 144 |
- LEFT JOIN MJ_POINT MP |
|
| 145 |
- ON A.MOID = MP.ORDER_ID |
|
| 146 |
- |
|
| 147 |
- LEFT JOIN lettngnrlmber mber |
|
| 148 |
- ON A.USER_ID = mber.MBER_ID |
|
| 149 |
- |
|
| 150 |
- LEFT OUTER JOIN MJ_EVENT_MBER_INFO EMI |
|
| 151 |
- ON A.USER_ID = EMI.MBER_ID |
|
| 152 |
- AND A.MOID = EMI.EVENT_PG_MOID |
|
| 153 |
- |
|
| 154 |
- LEFT OUTER JOIN KGM_PG KGM |
|
| 155 |
- ON A.MOID = KGM.MOID |
|
| 156 |
- |
|
| 131 |
+ LEFT JOIN |
|
| 132 |
+ ( |
|
| 133 |
+ SELECT |
|
| 134 |
+ CODE_NM |
|
| 135 |
+ , CODE |
|
| 136 |
+ , CODE_DC |
|
| 137 |
+ FROM |
|
| 138 |
+ LETTCCMMNDETAILCODE |
|
| 139 |
+ WHERE 1=1 |
|
| 140 |
+ AND USE_AT = 'Y' |
|
| 141 |
+ AND CODE_ID = 'ITN037' |
|
| 142 |
+ ) C ON A.PG_STATUS = C.CODE |
|
| 143 |
+ LEFT JOIN |
|
| 144 |
+ ( |
|
| 145 |
+ SELECT |
|
| 146 |
+ MOID |
|
| 147 |
+ , CONFIRM_YN |
|
| 148 |
+ , RCPT_TYPE |
|
| 149 |
+ FROM |
|
| 150 |
+ MJ_TAX |
|
| 151 |
+ WHERE 1=1 |
|
| 152 |
+ |
|
| 153 |
+ ) E ON A.MOID = E.MOID |
|
| 154 |
+ LEFT JOIN |
|
| 155 |
+ ( |
|
| 156 |
+ SELECT |
|
| 157 |
+ CODE_NM |
|
| 158 |
+ , CODE |
|
| 159 |
+ , CODE_DC |
|
| 160 |
+ FROM |
|
| 161 |
+ LETTCCMMNDETAILCODE |
|
| 162 |
+ WHERE 1=1 |
|
| 163 |
+ AND USE_AT = 'Y' |
|
| 164 |
+ AND CODE_ID = 'ITN038' |
|
| 165 |
+ ) D ON E.RCPT_TYPE = D.CODE |
|
| 166 |
+ LEFT JOIN MJ_POINT MP |
|
| 167 |
+ ON A.MOID = MP.ORDER_ID |
|
| 168 |
+ |
|
| 169 |
+ LEFT JOIN lettngnrlmber mber |
|
| 170 |
+ ON A.USER_ID = mber.MBER_ID |
|
| 171 |
+ |
|
| 172 |
+ LEFT OUTER JOIN MJ_EVENT_MBER_INFO EMI |
|
| 173 |
+ ON A.USER_ID = EMI.MBER_ID |
|
| 174 |
+ AND A.MOID = EMI.EVENT_PG_MOID |
|
| 175 |
+ |
|
| 176 |
+ LEFT OUTER JOIN KGM_PG KGM |
|
| 177 |
+ ON A.MOID = KGM.MOID |
|
| 157 | 178 |
WHERE 1=1 |
| 158 | 179 |
<isNotEmpty property="searchKeyword"> |
| 159 | 180 |
<isEqual property="searchCondition" compareValue="" > |
--- src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectPayDataListPop.jsp
+++ src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectPayDataListPop.jsp
... | ... | @@ -169,109 +169,30 @@ |
| 169 | 169 |
|
| 170 | 170 |
<div class="contWrap" style="position:relative;left:inherit;top:inherit;min-height:auto;padding:40px;"> |
| 171 | 171 |
<div class="pageTitle"> |
| 172 |
- <!-- <div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div> --> |
|
| 173 | 172 |
<h2 class="titType1 c_222222 fwBold">'<c:out value="${searchVO.userId}"/>'의 결제 리스트</h2>
|
| 174 |
- <!-- <p class="tType6 c_999999">문자전송리스트 현황을 파악할 수 있습니다.</p> --> |
|
| 175 | 173 |
</div> |
| 176 | 174 |
<div class="pageCont"> |
| 177 |
- |
|
| 178 |
- <%-- <div class="tableWrap tableWrapTotal"> |
|
| 179 |
- <table class="tbType1"> |
|
| 180 |
- <colgroup> |
|
| 181 |
- <col style="width:6.25%"> |
|
| 182 |
- <col style="width:6.25%"> |
|
| 183 |
- <col style="width:6.25%"> |
|
| 184 |
- <col style="width:6.25%"> |
|
| 185 |
- <col style="width:6.25%"> |
|
| 186 |
- <col style="width:6.25%"> |
|
| 187 |
- <col style="width:6.25%"> |
|
| 188 |
- <col style="width:6.25%"> |
|
| 189 |
- <col style="width:6.25%"> |
|
| 190 |
- <col style="width:6.25%"> |
|
| 191 |
- <col style="width:6.25%"> |
|
| 192 |
- <col style="width:6.25%"> |
|
| 193 |
- <col style="width:6.25%"> |
|
| 194 |
- <col style="width:6.25%"> |
|
| 195 |
- <col style="width:6.25%"> |
|
| 196 |
- <col style="width:6.25%"> |
|
| 197 |
- </colgroup> |
|
| 198 |
- <thead> |
|
| 199 |
- <tr> |
|
| 200 |
- <th colspan="4">단문</th> |
|
| 201 |
- <th colspan="4">장문</th> |
|
| 202 |
- <th colspan="4">그림문자</th> |
|
| 203 |
- <th colspan="4">종합</th> |
|
| 204 |
- </tr> |
|
| 205 |
- <tr class="content"> |
|
| 206 |
- <th>정상수신(건)</th> |
|
| 207 |
- <th>정상수신(금액)</th> |
|
| 208 |
- <th>실패대기(건)</th> |
|
| 209 |
- <th>실패대기(금액)</th> |
|
| 210 |
- <th>정상수신(건)</th> |
|
| 211 |
- <th>정상수신(금액)</th> |
|
| 212 |
- <th>실패대기(건)</th> |
|
| 213 |
- <th>실패대기(금액)</th> |
|
| 214 |
- <th>정상수신(건)</th> |
|
| 215 |
- <th>정상수신(금액)</th> |
|
| 216 |
- <th>실패대기(건)</th> |
|
| 217 |
- <th>실패대기(금액)</th> |
|
| 218 |
- <th>정상수신(건)</th> |
|
| 219 |
- <th>정상수신(금액)</th> |
|
| 220 |
- <th>실패대기(건)</th> |
|
| 221 |
- <th>실패대기(금액)</th> |
|
| 222 |
- </tr> |
|
| 223 |
- </thead> |
|
| 224 |
- <tbody> |
|
| 225 |
- <tr> |
|
| 226 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgSmsGroupSCntSum}" pattern="#,###" /></span></td>
|
|
| 227 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totSmsSPriceSum}" pattern="#,###" /></span></td>
|
|
| 228 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgSmsGroupFWCntSum}" pattern="#,###" /></span></td>
|
|
| 229 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totSmsFWPriceSum}" pattern="#,###" /></span></td>
|
|
| 230 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgLmsGroupSCntSum}" pattern="#,###" /></span></td>
|
|
| 231 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totLmsSPriceSum}" pattern="#,###" /></span></td>
|
|
| 232 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgLmsGroupFWCntSum}" pattern="#,###" /></span></td>
|
|
| 233 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totLmsFWPriceSum}" pattern="#,###" /></span></td>
|
|
| 234 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgMmsGroupSCntSum}" pattern="#,###" /></span></td>
|
|
| 235 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totMmsSPriceSum}" pattern="#,###" /></span></td>
|
|
| 236 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgMmsGroupFWCntSum}" pattern="#,###" /></span></td>
|
|
| 237 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totMmsFWPriceSum}" pattern="#,###" /></span></td>
|
|
| 238 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgGroupSCntSum}" pattern="#,###" /></span></td>
|
|
| 239 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totSPriceSum}" pattern="#,###" /></span></td>
|
|
| 240 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${msgGroupFWCntSum}" pattern="#,###" /></span></td>
|
|
| 241 |
- <td><span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${totFWPriceSum}" pattern="#,###" /></span></td>
|
|
| 242 |
- </tr> |
|
| 243 |
- </tbody> |
|
| 244 |
- </table> |
|
| 245 |
- </div> --%> |
|
| 246 |
- |
|
| 247 | 175 |
<div class="listSerch"> |
| 248 |
- <ec:select codeId="ITN036" name="searchCondition2" id="searchCondition2" css="class='select'" selectedValue="${searchVO.searchCondition2}"
|
|
| 249 |
- defaultValue="" defaultText="결제수단" /> |
|
| 250 |
- |
|
| 251 |
- <ec:select codeId="ITN037" name="searchCondition3" id="searchCondition3" css="class='select'" selectedValue="${searchVO.searchCondition3}"
|
|
| 252 |
- defaultValue="" defaultText="결제상태" /> |
|
| 176 |
+ <ec:select codeId="ITN036" name="searchCondition2" id="searchCondition2" css="class='select'" selectedValue="${searchVO.searchCondition2}" defaultValue="" defaultText="결제수단" />
|
|
| 177 |
+ <ec:select codeId="ITN037" name="searchCondition3" id="searchCondition3" css="class='select'" selectedValue="${searchVO.searchCondition3}" defaultValue="" defaultText="결제상태" />
|
|
| 253 | 178 |
<select name="searchCondition" class="select" title="검색조건 선택"> |
| 254 | 179 |
<option value="" <c:if test="${searchVO.searchCondition == ''}">selected="selected"</c:if>>전체</option>
|
| 255 |
- <%-- <option value="1" <c:if test="${searchVO.searchCondition == '1'}">selected="selected"</c:if>>사용자ID</option>
|
|
| 256 |
- <option value="2" <c:if test="${searchVO.searchCondition == '2'}">selected="selected"</c:if>>사용자이름</option> --%>
|
|
| 257 | 180 |
<option value="3" <c:if test="${searchVO.searchCondition == '3'}">selected="selected"</c:if>>주문번호(PG)</option>
|
| 258 | 181 |
</select> |
| 259 | 182 |
<input id="searchKeyword" name="searchKeyword" class="recentSearch" type="text" value="<c:out value='${searchVO.searchKeyword}'/>" size="25" title="검색" maxlength="100" />
|
| 260 | 183 |
<input type="button" class="btnType1" value="검색" onclick="fn_search(); return false;"> |
| 261 |
- |
|
| 262 | 184 |
<input type="hidden" name="cal_url" id="cal_url" value="/sym/cmm/EgovNormalCalPopup.do"> |
| 263 |
- <a href="#" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.ntceBgndeYYYMMDD);"> |
|
| 264 |
- <input style="width:auto;min-width: 83px;" type="text" class="date_format" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD" size="4" maxlength="4" readonly="" |
|
| 265 |
- value="<c:out value="${searchVO.startDate}" />" >
|
|
| 266 |
- <input type="button" class="calBtn"> |
|
| 267 |
- </a> |
|
| 268 |
- ~ |
|
| 269 |
- <a href="#" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.ntceEnddeYYYMMDD);"> |
|
| 270 |
- <input style="width:auto;min-width: 83px;" type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD" size="4" maxlength="4" readonly="" |
|
| 271 |
- value="<c:out value="${searchVO.endDate}" />"
|
|
| 272 |
- > |
|
| 273 |
- <input type="button" class="calBtn"> |
|
| 274 |
- </a> |
|
| 185 |
+ <a href="#" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.ntceBgndeYYYMMDD);"> |
|
| 186 |
+ <input style="width:auto;min-width: 83px;" type="text" class="date_format" name="ntceBgndeYYYMMDD" id="ntceBgndeYYYMMDD" size="4" maxlength="4" readonly="" |
|
| 187 |
+ value="<c:out value="${searchVO.startDate}" />" >
|
|
| 188 |
+ <input type="button" class="calBtn"> |
|
| 189 |
+ </a> |
|
| 190 |
+ ~ |
|
| 191 |
+ <a href="#" onclick="javascript:fn_egov_NormalCalendar(document.forms.listForm, document.forms.listForm.ntceEnddeYYYMMDD);"> |
|
| 192 |
+ <input style="width:auto;min-width: 83px;" type="text" class="date_format" name="ntceEnddeYYYMMDD" id="ntceEnddeYYYMMDD" size="4" maxlength="4" readonly="" |
|
| 193 |
+ value="<c:out value="${searchVO.endDate}" />">
|
|
| 194 |
+ <input type="button" class="calBtn"> |
|
| 195 |
+ </a> |
|
| 275 | 196 |
<a href="#" style="margin-left: 17px;" onclick="init_date(); return false;"> |
| 276 | 197 |
<img src="/pb/img/common/topTimeOut.png" alt="타임아웃 아이콘"> |
| 277 | 198 |
</a> |
... | ... | @@ -279,8 +200,6 @@ |
| 279 | 200 |
<div class="listTop"> |
| 280 | 201 |
<p class="tType5">총 <span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${paginationInfo.totalRecordCount}" pattern="#,###" /></span>건</p>
|
| 281 | 202 |
<div class="rightWrap"> |
| 282 |
- <!-- <input type="button" class="excelBtn" onclick="javascript:sendMsgExcelDownload();"> --> |
|
| 283 |
- <!-- <input type="button" class="printBtn"> --> |
|
| 284 | 203 |
<select name="pageUnit" id="pageUnit" class="select" title="검색조건선택" onchange="linkPage(1);"> |
| 285 | 204 |
<option value='10' <c:if test="${searchVO.pageUnit == '10' or searchVO.pageUnit == ''}">selected</c:if>>10줄</option>
|
| 286 | 205 |
<option value='20' <c:if test="${searchVO.pageUnit == '20'}">selected</c:if>>20줄</option>
|
... | ... | @@ -300,44 +219,42 @@ |
| 300 | 219 |
<col style="width: *%"> |
| 301 | 220 |
<col style="width: 9%"> |
| 302 | 221 |
<col style="width: 6%"> |
| 303 |
- <col style="width: 8%"> |
|
| 222 |
+ <col style="width: 6%"> |
|
| 304 | 223 |
<col style="width: 13%"> |
| 305 | 224 |
</colgroup> |
| 306 | 225 |
<thead> |
| 307 | 226 |
<tr> |
| 308 |
- <!-- <th><input type="checkbox" name="checkAll" id="checkAll" class="check2" value="1" onClick="fnCheckAll();"></th> --> |
|
| 309 | 227 |
<th>번호<input type="button" class="sort sortBtn" id="sort_moid"></th> |
| 310 | 228 |
<th>아이디<input type="button" class="sort sortBtn" id="sort_userId"></th> |
| 311 | 229 |
<th>이름<input type="button" class="sort sortBtn" id="sort_buyerName"></th> |
| 312 | 230 |
<th>할인<input type="button" class="sort sortBtn" id="sort_eventMoid"></th> |
| 313 | 231 |
<th>결제금액<input type="button" class="sort sortBtn" id="sort_cash"></th> |
| 314 |
- <!-- <th>취소금액<input type="button" class="sort sortBtn" id="sort_cancelAmt"></th> --> |
|
| 315 | 232 |
<th>결제수단<input type="button" class="sort sortBtn" id="sort_payMethodTxt"></th> |
| 316 | 233 |
<th>주문번호(PG사)<input type="button" class="sort sortBtn" id="sort_tid"></th> |
| 317 |
- <!-- <th>주문번호(고객사)<input type="button" class="sort sortBtn" id="sort_mid"></th> --> |
|
| 318 | 234 |
<th>결제폰번호<input type="button" class="sort sortBtn" id="sort_phone"></th> |
| 319 | 235 |
<th>결제상태<input type="button" class="sort sortBtn" id="sort_pgStatusTxt"></th> |
| 320 |
- <!-- <th>결제메세지<input type="button" class="sort sortBtn" id="sort_resultMsg"></th> --> |
|
| 321 | 236 |
<th>영수증<input type="button" class="sort sortBtn" id="sort_rcptTypeTxt"></th> |
| 237 |
+ <th>의무발행 완료 여부</th> |
|
| 322 | 238 |
<th>결제시간<input type="button" class="sort sortBtn" id="sort_regDate"></th> |
| 323 | 239 |
</tr> |
| 324 | 240 |
</thead> |
| 325 | 241 |
<tbody> |
| 326 | 242 |
<c:forEach var="result" items="${resultList}" varStatus="status">
|
| 327 | 243 |
<tr onclick="fn_modify('${result.moid}'); return false;" style="cursor:pointer;">
|
| 328 |
- <%-- <td> |
|
| 329 |
- <input name="del" id="del_${status.index}" type="checkbox" value="${result.cashId}" />
|
|
| 330 |
- </td> --%> |
|
| 331 | 244 |
<td> |
| 332 | 245 |
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
| 333 |
- <c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
|
| 334 |
- </c:if> |
|
| 335 |
- <c:if test="${searchVO.searchSortOrd eq 'asc' }">
|
|
| 336 |
- <c:out value="${(paginationInfo.currentPageNo - 1) * paginationInfo.recordCountPerPage + status.count}"/>
|
|
| 337 |
- </c:if> |
|
| 246 |
+ <c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
|
| 247 |
+ </c:if> |
|
| 248 |
+ <c:if test="${searchVO.searchSortOrd eq 'asc' }">
|
|
| 249 |
+ <c:out value="${(paginationInfo.currentPageNo - 1) * paginationInfo.recordCountPerPage + status.count}"/>
|
|
| 250 |
+ </c:if> |
|
| 338 | 251 |
</td> |
| 339 |
- <td><c:out value="${result.userId}"/></td>
|
|
| 340 |
- <td><c:out value="${result.buyerName}"/></td>
|
|
| 252 |
+ <td> |
|
| 253 |
+ <c:out value="${result.userId}"/>
|
|
| 254 |
+ </td> |
|
| 255 |
+ <td> |
|
| 256 |
+ <c:out value="${result.buyerName}"/>
|
|
| 257 |
+ </td> |
|
| 341 | 258 |
<td> |
| 342 | 259 |
<c:if test="${not empty result.eventMoid}">
|
| 343 | 260 |
첫 결제 |
... | ... | @@ -351,26 +268,43 @@ |
| 351 | 268 |
}"><fmt:formatNumber value="${result.amt}" type="number" /><c:if test="${'4' eq result.pgStatus}"><font color="red">(오류)</font></c:if>
|
| 352 | 269 |
</c:if> |
| 353 | 270 |
</td> |
| 354 |
- <%-- <td><fmt:formatNumber value="${result.cancelAmt}" type="number" /><c:if test="${'8' eq result.pgStatus}"><font color="red">(오류)</font></c:if></td> --%>
|
|
| 355 |
- <td><c:out value="${result.payMethodTxt}"/></td>
|
|
| 356 |
- |
|
| 271 |
+ <td> |
|
| 272 |
+ <c:out value="${result.payMethodTxt}"/>
|
|
| 273 |
+ </td> |
|
| 357 | 274 |
<td> |
| 358 | 275 |
<c:out value="${result.tid}"/>
|
| 359 | 276 |
</td> |
| 360 |
- <td><c:out value="${result.phone}"/></td>
|
|
| 361 |
- <td><c:out value="${result.pgStatusTxt}"/></td>
|
|
| 362 |
- <%-- <td><c:out value="${result.resultMsg}"/></td> --%>
|
|
| 363 | 277 |
<td> |
| 364 |
- <c:if test="${result.rcptType ne ''}">
|
|
| 365 |
- <c:out value="${result.rcptTypeTxt}"/>
|
|
| 366 |
- </c:if> |
|
| 278 |
+ <c:out value="${result.phone}"/>
|
|
| 367 | 279 |
</td> |
| 368 |
- <td><c:out value="${result.regDate}"/></td>
|
|
| 280 |
+ <td> |
|
| 281 |
+ <c:out value="${result.pgStatusTxt}"/>
|
|
| 282 |
+ </td> |
|
| 283 |
+ <td> |
|
| 284 |
+ <c:if test="${result.rcptType ne '3'}">
|
|
| 285 |
+ <c:out value="${result.rcptTypeTxt}"/>
|
|
| 286 |
+ </c:if> |
|
| 287 |
+ </td> |
|
| 288 |
+ <td> |
|
| 289 |
+ <c:if test="${result.rcptType eq '3'}">
|
|
| 290 |
+ <c:choose> |
|
| 291 |
+ <c:when test="${result.confirmYn eq 'Y'}">
|
|
| 292 |
+ ○ |
|
| 293 |
+ </c:when> |
|
| 294 |
+ <c:otherwise> |
|
| 295 |
+ - |
|
| 296 |
+ </c:otherwise> |
|
| 297 |
+ </c:choose> |
|
| 298 |
+ </c:if> |
|
| 299 |
+ </td> |
|
| 300 |
+ <td> |
|
| 301 |
+ <c:out value="${result.regDate}"/>
|
|
| 302 |
+ </td> |
|
| 369 | 303 |
</tr> |
| 370 | 304 |
</c:forEach> |
| 371 | 305 |
<c:if test="${empty resultList}">
|
| 372 |
- <tr><td colspan="10"><spring:message code="common.nodata.msg" /></td></tr> |
|
| 373 |
- </c:if> |
|
| 306 |
+ <tr><td colspan="10"><spring:message code="common.nodata.msg" /></td></tr> |
|
| 307 |
+ </c:if> |
|
| 374 | 308 |
</tbody> |
| 375 | 309 |
</table> |
| 376 | 310 |
</div> |
... | ... | @@ -380,13 +314,13 @@ |
| 380 | 314 |
</div> |
| 381 | 315 |
<!-- 페이지 네비게이션 시작 --> |
| 382 | 316 |
<c:if test="${!empty resultList}">
|
| 383 |
- <div class="page"> |
|
| 384 |
- <ul class="inline"> |
|
| 385 |
- <ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" />
|
|
| 386 |
- </ul> |
|
| 387 |
- </div> |
|
| 388 |
- </c:if> |
|
| 389 |
- <!-- //페이지 네비게이션 끝 --> |
|
| 317 |
+ <div class="page"> |
|
| 318 |
+ <ul class="inline"> |
|
| 319 |
+ <ui:pagination paginationInfo = "${paginationInfo}" type="image" jsFunction="linkPage" />
|
|
| 320 |
+ </ul> |
|
| 321 |
+ </div> |
|
| 322 |
+ </c:if> |
|
| 323 |
+ <!-- //페이지 네비게이션 끝 --> |
|
| 390 | 324 |
</div> |
| 391 | 325 |
</div> |
| 392 | 326 |
</form> |
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?