📄 transfermind.jsp
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="cn.com.aheadsoft.recordset.DocTransferRecordSet" %>
<%@ page import="cn.com.aheadsoft.recordset.DocPigeonholeRecordSet" %>
<%@ page import="cn.com.aheadsoft.util.StringFormat" %>
<%@ page import="cn.com.aheadsoft.util.Digester" %>
<%@ page import="cn.com.aheadsoft.util.TheProperties" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
<title>公文审批信息</title>
<script>
<!--
function openWin(url) {
window.open(url,'','toolbar=no,location=no,menubar=no,resizable=1,scrollbars=yes,left=0,top=0,width=800,height=600');
}
-->
</script>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="98%" align="center" border="0" cellpadding="0" cellspacing="0" >
<tr >
<td height="8"></td>
</tr>
<tr >
<td></td>
</tr>
<tr>
<td align="center" >
<table border="0" width="100%" align="center" bordercolor="A1B7DB" class="collapse">
<tr >
<td class="tdA" colspan="9">
收文处理单</td>
</tr>
<%
DocTransferRecordSet recordset = (DocTransferRecordSet)request.getAttribute("doctransfer");
DocTransferRecordSet recordset3 = (DocTransferRecordSet)request.getAttribute("nottran");
DocPigeonholeRecordSet docPholeRecordset=(DocPigeonholeRecordSet) request.getAttribute("DocPhole");
boolean rt = true;
if(docPholeRecordset != null && docPholeRecordset.size() > 0) {
docPholeRecordset.next();
%>
<tr >
<td align="center" class="common bgcolor" >归档</td>
<td align="center" class="common"> <table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="common">
<td> 已完成</td>
</tr>
<% if (docPholeRecordset.getDP_Location()!=null&& !("").equals(docPholeRecordset.getDP_Location())) {%>
<tr class="common">
<td> 位置: <%= StringFormat.Source2GB(docPholeRecordset.getDP_Location()) %> </td>
</tr>
<%}%>
<% if (docPholeRecordset.getDP_Remark()!=null&& !("").equals(docPholeRecordset.getDP_Remark())) {%>
<tr class="common">
<td> 说明: <%= StringFormat.Source2GB(docPholeRecordset.getDP_Remark()) %> </td>
</tr>
<%}%>
<tr class="common" >
<td align="right"> <%= StringFormat.Source2GB(docPholeRecordset.getDP_Date()) %> <%= StringFormat.Source2GB(docPholeRecordset.getDP_Handlers()) %></td>
</tr>
</table></td>
</tr>
<% }
if(recordset3 != null && recordset3.size() > 0) {
while(recordset3.next()){
%>
<tr >
<td align="center" class="common bgcolor" ><%= StringFormat.Source2GB(recordset3.getDFN_Name()) %></td>
<td align="center" class="common"> <table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="common">
<td > <%= StringFormat.Source2GB(recordset3.getDT_NextHandlers()) %> 尚未处理</td>
</tr>
<% if (recordset3.getDT_TimeLimit()!=null&& !("").equals(recordset3.getDT_TimeLimit())&& !("0000-00-00").equals(recordset3.getDT_TimeLimit())) {%>
<tr class="common">
<td>办理时限: <%= StringFormat.Source2GB(recordset3.getDT_TimeLimit()) %> </td>
</tr>
<%}%>
</table></td>
</tr>
<%}
}
if(recordset != null && recordset.size() > 0) {
while(recordset.next()) {
rt = false;
Digester m_Digester = new Digester();
//设置签名所属用户ID
m_Digester.SetUserID(recordset.getTM_HandlersID());
//调用初始化key
m_Digester.initkey();
//设置被签名的String
m_Digester.SetData(recordset.getTM_Handlers() + "#" + recordset.getTM_Mind());
//读出签名
String encodedtext = recordset.getTM_Signer();
//传入签名,检查
rt = m_Digester.doVerity(encodedtext);
if(rt||!TheProperties.ENCODE.equalsIgnoreCase("iso8859_1")) {
%>
<tr >
<td align="center" class="common bgcolor" ><%= StringFormat.Source2GB(recordset.getDFN_Name()) %></td>
<td align="center" class="common"> <table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="common">
<td colspan="2"> <%= StringFormat.toOldFormat(StringFormat.Source2GB(recordset.getTM_Mind())) %></td>
</tr>
<tr class="common">
<td width="45%">
<% if (recordset.getDT_TimeLimit()!=null&& !("").equals(recordset.getDT_TimeLimit())&& !("0000-00-00").equals(recordset.getDT_TimeLimit())) {%>
办理时限: <%= StringFormat.Source2GB(recordset.getDT_TimeLimit()) %>
<%}%>
</td>
<td width="55%" align="right"> <%= StringFormat.Source2GB(recordset.getTM_Date()) %> <%= StringFormat.Source2GB(recordset.getTM_Handlers()) %></td>
</tr>
</table></td>
</tr>
<%
}else {
%>
<tr >
<td align="center" class="common bgcolor" ><%= StringFormat.Source2GB(recordset.getDFN_Name()) %></td>
<td align="center" class="common"> <table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr class="common">
<td> <font color="#ff0000">意见已被他人非法改动!!!</font></td>
</tr>
<tr class="common">
<td align="right"> <%= StringFormat.Source2GB(recordset.getTM_Date()) %> <%= StringFormat.Source2GB(recordset.getTM_Handlers()) %></td>
</tr>
</table></td>
</tr>
<%
}
}
}
%>
<tr >
<td colspan="2" > </td>
</tr>
<tr >
<td colspan="2" class="tdC" align="center"><input type="button" onmouseover="this.className='button2'" onmouseout="this.className='button1'" class="button1" value="关 闭" onClick="javascript:window.close();"></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -