operationHistory.html 3.99 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
#set($title = "操作履歴")
#set($menukubun = "5")
#parse( "/WEB-INF/view/common/header_admin.vm" )

<script language="javascript" type="text/javascript" charset="utf-8">
<!--
	//開始日
	$(function() {
	  $('#searchFrom').datepick({showTrigger: '#searchFromDate'});
	});

	//終了日
	$(function() {
	  $('#searchTo').datepick({showTrigger: '#searchToDate'});
	});

	// -->
</script>


<div id="contents">
<div id="contents_main">
<div id="breadcrumbsWrap">
						<!-- <div id="breadcrumbs" class="fs01 clearfix">
							<ul class="crumbs">
								<li><a href="#q('/admin/member/memberSearch/')">設定</a>&nbsp;></li>
								<li><em>操作履歴</em></li>
							</ul>
						</div>[ /breadcrumbs ] -->
</div><!--[ /breadcrumbsWrap ]-->
<div id="main" class="clearfix">


<h2 class="contents_title">操作履歴</h2>

<div id="right_contents">

<h3 class="table_title">検索条件入力</h3>
$!tools.getMsg("dateError") $!tools.getMsg("dateError_1") $!tools.getMsg("dateError_2")
<form method="POST" action="#q('/admin/setting/operationHistory/search/1')"  name="frm">
<div id="search">
<table border="0" cellpadding="0" cellspacing="0" class="stripe3  w790">

	<tr class="gray">
		<td class="w130">操作期間
		</td>

		<td class="w600">期間(from)
			<input name="searchFrom" id="searchFrom" type="text" class="w150" value="$!escape.html($!{operationHistoryForm.searchFrom})" />
			<div style="display: none;"><img id="searchFromDate" src="/em/images/icon_cal.gif" style="padding-left:5px;padding-right:5px; vertical-align: middle;"></div>
		~期間(to)
			<input name="searchTo" id="searchTo" type="text" class="w150" value="$!escape.html($!{operationHistoryForm.searchTo})"/>
			<div style="display: none;"><img id="searchToDate" src="/em/images/icon_cal.gif" style="padding-left:5px;padding-right:5px; vertical-align: middle;"></div>
		</td>
	</tr>
	<tr class="gray">
		<td>管理者選択
		</td>
		<td class="w600">
				<SELECT name="selectAdmin">
					<OPTION value="0" #if($operationHistoryForm.selectAdmin == "0") selected #end >全部</OPTION>
					#foreach($adminUser in $operationHistoryForm.adminUserList)
						<OPTION value="$!adminUser.adminUserId"  #if($operationHistoryForm.selectAdmin ==  $!adminUser.adminUserId) selected #end >$!escape.html($!adminUser.adminUserName)</OPTION>
					#end
				</SELECT>
		</td>
	</tr>
		<tr>
			<td align="center" colspan="2">
				##<a href="#" onclick="document.frm.submit();"><img src="/em/images/enq_01_btn_03_off.jpg" width="100" height="35" alt="検索" /></a>
				<input type="button" class="button" value="検索" onclick="document.frm.submit();"/>
			</td>

		</tr>
</table>
</div>
<BR>
#if($operationHistoryForm.operationHistory && $!operationHistoryForm.operationHistory.size() > 0)
■該当件数  $!{operationHistoryForm.pagingMap.paging.totalCnt}件中 &nbsp;&nbsp;$!{operationHistoryForm.pagingMap.paging.firstIndex} ~ $!{operationHistoryForm.pagingMap.paging.lastIndex}件
	<table border="0" cellpadding="0" cellspacing="0" class="stripe">

			<tr>
				<th class="w130  t_center" >日時</th>
				<th class="w100  t_center" >管理者ID</th>
				<th class="w170  t_center" >画面名</th>
				##<th class="w280  t_center" >操作対象</th>
				<th class="w100  t_center" >操作名</th>
			</tr>
		#foreach($history in $operationHistoryForm.operationHistory)
			<tr>
				<td class="w130  t_center" >$date.format("yyyy/MM/dd HH:mm:ss",$!history.insertDate) </td>
				<td class="w100  t_left" >$history.adminUser.loginId </td>
				<td class="w170  t_left" >$history.screen.screenName </td>
				##<td class="w280  t_left" >$history.target</td>
				<td class="w100  t_left" >$history.detail</td>
			</tr>
		#end
	</table>
	#makeLink("#q('/admin/setting/operationHistory/search/')",$operationHistoryForm.pagingMap.paging)
#else
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
#end

</form>
</div>
</div>
<div id="contents_bottom">
<img src="/em/images/bg_contents_bottom.jpg" width="1036" height="15" /> </div> </div>
</div>
</div>
</div>

#parse( "/WEB-INF/view/common/footer_admin.vm" )