회원 탈퇴자 관리 통계 추가
This commit is contained in:
parent
5a76fa51ea
commit
4c381b8b1f
@ -171,6 +171,16 @@ public class UserDefaultVO implements Serializable {
|
||||
|
||||
private String searchHotlineAgentCode;
|
||||
|
||||
private String searchDeleteType;
|
||||
|
||||
public String getSearchDeleteType() {
|
||||
return searchDeleteType;
|
||||
}
|
||||
|
||||
public void setSearchDeleteType(String searchDeleteType) {
|
||||
this.searchDeleteType = searchDeleteType;
|
||||
}
|
||||
|
||||
public String getSearchHotlineAgentCode() {
|
||||
return searchHotlineAgentCode;
|
||||
}
|
||||
|
||||
@ -184,6 +184,10 @@
|
||||
adminSmsNoticeYn = #searchAdminSmsNoticeYn#
|
||||
</isNotEmpty>
|
||||
|
||||
<isNotEmpty prepend="AND" property="searchDeleteType">
|
||||
deleteType = #searchDeleteType#
|
||||
</isNotEmpty>
|
||||
|
||||
<isNotEmpty property="searchSmsSalePrice">
|
||||
<isEqual prepend="AND" property="searchSmsSalePrice" compareValue="Y">
|
||||
(shortPrice > 0 AND (18.00 > shortPrice OR 50.00 > longPrice OR 90.00 > picturePrice OR 110.00 > picture2Price OR 130.00 > picture3Price))
|
||||
|
||||
@ -132,6 +132,43 @@ function fn_search2(){
|
||||
<input type="button" class="btnType1" onclick="fn_search2(); return false;" value="검색">
|
||||
<input type="button" class="btnType1" onclick="fn_searchReset2(); return false;" value="초기화">
|
||||
</div>
|
||||
|
||||
<div class="tableWrap">
|
||||
<table class="tbType4">
|
||||
<colgroup>
|
||||
<col style="width:8%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
<col style="width:11%">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>구분</th>
|
||||
<c:forEach var="item" items="${resultMberDelTypeGrpList}" varStatus="status">
|
||||
<th>${item.deleteTypeName}</th>
|
||||
</c:forEach>
|
||||
<th>계</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>인원</td>
|
||||
<c:set var="deleteTypeSum" value="0" />
|
||||
<c:forEach var="item" items="${resultMberDelTypeGrpList}" varStatus="status">
|
||||
<c:set var="deleteTypeSum" value="${deleteTypeSum + item.deleteTypeCnt}" />
|
||||
<td><a href="/uss/umt/user/EgovDelUserManage.do?searchDeleteType=${item.deleteType}">${item.deleteTypeCnt}</a></td>
|
||||
</c:forEach>
|
||||
<td><a href="/uss/umt/user/EgovDelUserManage.do"><fmt:formatNumber value="${deleteTypeSum}" pattern="#,###" /></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="listTop">
|
||||
<p class="tType5">총 <span class="tType4 c_456ded fwBold"><fmt:formatNumber value="${paginationInfo.totalRecordCount}" pattern="#,###" /></span>건</p>
|
||||
<div class="rightWrap">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user