<%@include file="/auth.jsp"%>
<%@page import="com.zky.manager.Util" %>
<%@page language="java" contentType="text/html;charset=utf-8"%>
<jsp:useBean id="getPara" scope="application" class="com.zky.para.SyncPara"/>
<%
	HashFmlBuf bufInfo=(HashFmlBuf)request.getAttribute("by_checkId");
%>
<html>
<head>
<title>检查信息预览</title>
<link href="../../css/font.css" rel="stylesheet" type="text/css">

<link rel="stylesheet" type="text/css" href="../../js/2k3Grid.css">
<link rel="stylesheet" type="text/css" href="../../js/2k3Menu.css">
<link rel="stylesheet" type="text/css" href="../../js/2k3Dialog.css">
<script src="/js/check.js"></script>
<style type="text/css">
	.td1{width: 30%;}
table#csstable{
border-top:#D8E9FE 1px solid;
border-left:#D8E9FE 1px solid;
}
table#csstable td{
border-bottom:#D8E9FE 1px solid;
border-right:#D8E9FE 1px solid;
}
</style>
</head>
<body>
<h3 align="center">检查信息预览</h3>
<table id="csstable" width="90%"  border="0" align="center" cellpadding="0" cellspacing="0">
   	    <tr bgcolor="#FFFFFF">
   			<td class="cell3">检查编号</td>
   			<td class="cell4">
   			<%if(bufInfo.fget("check_Id",0).equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=bufInfo.fget("check_Id",0)%><%} %></td>
   			<td class="cell3">检查人姓名</td>
   			<td class="cell4">
   			<%if(bufInfo.fget("empid",0).equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=bufInfo.fget("empid",0)%>
   			<%} %>
   			</td>
   	  </tr>
   	    <tr bgcolor="#FFFFFF">
   			<td class="cell3">检查开始时间</td>
   			<td class="cell4">
   			<%if(bufInfo.fget("check_start_time",0).equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=bufInfo.fget("check_start_time",0) %>
   			<%} %></td>
   			<td class="cell3">检查结束时间</td>
   			<td class="cell4">
   			<%if(bufInfo.fget("check_end_time",0).equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=bufInfo.fget("check_end_time",0)%>
   			<%} %>
   			</td>
   		</tr>
   		<tr bgcolor="#FFFFFF">
   			<td class="cell3">检查类型</td>
   			<td class="cell4">
   			<%
   			String tempType=bufInfo.fget("check_type",0);
			if (tempType.equals("0")) {
				tempType = "自行检查";
			} else if(tempType.equals("1")) {
				tempType = "保密局检查";
		     }else{
		    	 tempType="其它检查";
		     }
   			%>
   			<%if(tempType.equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=tempType %>
   			<%} %></td>
   			<td class="cell3">检查内容</td>
   			<td class="cell4">
   			   			<%
   						String tempContet=bufInfo.fget("check_content",0);
   						if (tempContet.equals("0")) {
   							tempContet = "人员检查";
   						} else if(tempContet.equals("1")) {
   							tempContet = "资产检查";
   					     }else  if(tempContet.equals("2")){
   					    	 tempContet="文件检查";
   					     }else  if(tempContet.equals("3")){
   					    	 tempContet="泄密事件";
   					     }else{
   					    	 tempContet="管理制度";
   					     }
   			%>
   			<%if(tempContet.equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=tempContet%>
   			<%} %>
   			</td>
   		</tr>
   		<tr bgcolor="#FFFFFF">
   			<td class="cell3">检查结果</td>
   			<td class="cell4">
   			<%if(bufInfo.fget("check_result",0).equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=bufInfo.fget("check_result",0) %>
   			<%} %></td>
   			<td class="cell3">检查地址</td>
   			<td class="cell4">
   			<%if(bufInfo.fget("address",0).equals("")){ %>
    				未填写
    			<%}else{ %>
   			<%=bufInfo.fget("address",0)%>
   			<%} %>
   			</td>
   		</tr>
</table><br>
<%@include file="../../print/print.jsp"%>
</body>
</html>