DeleteNoUsefulDocManage.jsp
资源名称:OA.rar [点击查看]
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:13k
源码类别:
OA系统
开发平台:
Java
- <%@ page contentType="text/html; charset=gb2312" %>
- <%@ page import="com.gforce.gfoa.*, com.gforce.currency.*, java.util.*" %>
- <jsp:include page="/CheckLogin.jsp" flush="true"/><%Session m_session = new Session(session);%>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
- <title>公文删除页面 -- GForce OA 2.0</title>
- <link href="../css/txt.jsp" rel="stylesheet" type="text/css">
- <script language="JavaScript" src="/js/changestyle.js"></script>
- </head>
- <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
- <table width="100%" height="100%" border="0" align="center" cellspacing="0">
- <tr>
- <td align="center" valign="top">
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td height="50" valign="top" background="../images/dy-back.gif">
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr valign="middle">
- <td width="61" align="center" height="20"><img src="../images/dy-01.gif" width="38" height="36"></td>
- <td width="118" nowrap="nowrap" valign="middle"><strong><font color="#000000">删除作废公文管理</font></strong></td>
- <td align="right" nowrap="nowrap" valign="bottom">
- <!-- 群增<img src="../images/MulAdd.gif" onMouseOver="this.src='../images/MulAdd_a.gif';" onMouseOut="this.src='../images/MulAdd.gif';" border="0" height="22" width="59"> -->
- <!-- <img src="../images/Single.gif" onMouseOver="this.src='../images/Single_a.gif';" onMouseOut="this.src='../images/Single.gif';" border="0" height="22" width="59"> -->
- <!-- 修改<img src="../images/Update.gif" onMouseOver="this.src='../images/Update_a.gif';" onMouseOut="this.src='../images/Update.gif';" border="0" height="22" width="59"> -->
- <!-- 删除<img src="../images/Del.gif" onMouseOver="this.src='../images/Del_a.gif';" onMouseOut="this.src='../images/Del.gif';" border="0" height="22" width="59"> -->
- <!-- 查看<img src="../images/Query.gif" onMouseOver="this.src='../images/Query_a.gif';" onMouseOut="this.src='../images/Query.gif';" border="0" height="22" width="59"> -->
- <!-- 组合查询<img src="../images/GroupQuery.gif" onMouseOver="this.src='../images/GroupQuery_a.gif';" onMouseOut="this.src='../images/GroupQuery.gif';" border="0" height="22" width="79"> -->
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <%
- Request m_request = new Request(request);
- int iPageSize = 18;
- int iPage = m_request.GetInt("Page");
- String strCurrentPageURL = request.getRequestURI();
- int iSysDirID = m_request.GetInt("SysDirID");
- int iUserID = m_session.GetInt("UserID");
- String strSysDirID = iSysDirID + "";
- String strID = m_request.GetString("ID");
- String strDocumentName = m_request.GetString("DocumentName");
- int iDocFlowTempletID = m_request.GetInt("DocFlowTempletID");
- String strDocFlowTempletName = m_request.GetString("DocFlowTempletName");
- String strBuildTimeFrom = m_request.GetString("BuildTimeFrom");
- String strBuildTimeTo = m_request.GetString("BuildTimeTo");
- int iBuildUserID = m_request.GetInt("BuildUserID");
- String strBuildUserName = m_request.GetString("BuildUserName");
- int iFillUserID = m_request.GetInt("FillUserID");
- String strFillUserName = m_request.GetString("FillUserName");
- boolean bIsPigeonholed = true;
- int iCurrentFlowTacheID = m_request.GetInt("CurrentFlowTacheID");
- String strCurrentFlowTacheName = m_request.GetString("CurrentFlowTacheName");
- String strIsReminded = m_request.GetString("IsReminded");
- String strRemindTime = m_request.GetString("RemindTime");
- int iTacheStatus = 0;
- String strTacheStatus = m_request.GetString("TacheStatus");
- boolean bIsDesc=false;
- String strOrderBy = m_request.GetString("OrderBy");
- String strIsDesc = m_request.GetString("IsDesc");
- %>
- <script language="JavaScript">
- function changeorder(orderBy)
- {
- with(document.DeleteDocumentManage)
- {
- if(OrderBy.value==orderBy)
- {
- if(IsDesc.value=="")
- IsDesc.value="True";
- else
- IsDesc.value="";
- }
- else
- {
- IsDesc.value="";
- OrderBy.value=orderBy;
- Page.value="1";
- }
- }
- document.DeleteDocumentManage.submit();
- }
- function changepage(pageNum)
- {
- with(document.DeleteDocumentManage)
- {
- Page.value=pageNum;
- }
- document.DeleteDocumentManage.submit();
- }
- function checkDeleteDocument()
- {
- var isIDCheck = false;
- var isIDCheck = false;
- with(document.DeleteDocument)
- {
- try
- {
- for(i=0;i<elements.length;i++)
- {
- if(elements[i].type=="checkbox"&&elements[i].name=="ID")
- {
- if(elements[i].checked)
- {
- isIDCheck = true;
- break;
- }
- }
- }
- }
- catch(ex)
- {
- }
- }
- if(!isIDCheck)
- {
- alert("请先选择公文,再进行删除操作!");
- return false;
- }
- return window.confirm('确实要删除这些文档记录吗?');
- }
- function checktall()
- {
- var allselect=true;
- with(document.DeleteDocument)
- {
- if(selectall.value=="全部选择")
- {
- allselect = true;
- selectall.value="全部取消";
- }
- else
- {
- allselect = false;
- selectall.value="全部选择";
- }
- for(i=0;i<elements.length;i++)
- {
- if(elements[i].type=="checkbox")
- elements[i].checked = allselect;
- }
- }
- }
- </script>
- <table width="100%" height="100%" border="0" align="center" cellspacing="0">
- <tr>
- <td align="center" valign="top"><p> </p>
- <form name="DeleteDocumentManage" action="<%=strCurrentPageURL + "?SysDirID=" + iSysDirID%>" method="post">
- <input name="Page" type="hidden" value="<%=iPage%>">
- <input name="SysDirID" type="hidden" value="<%=iSysDirID%>">
- <input name="UserID" type="hidden" value="<%=iUserID%>">
- <input name="ID" type="hidden" value="<%=strID%>">
- <input name="DocumentName" type="hidden" value="<%=strDocumentName%>">
- <input name="DocFlowTempletID" type="hidden" value="<%=iDocFlowTempletID%>">
- <input name="DocFlowTempletName" type="hidden" value="<%=strDocFlowTempletName%>">
- <input name="BuildTimeFrom" type="hidden" value="<%=strBuildTimeFrom%>">
- <input name="BuildTimeTo" type="hidden" value="<%=strBuildTimeTo%>">
- <input name="BuildUserID" type="hidden" value="<%=iBuildUserID%>">
- <input name="BuildUserName" type="hidden" value="<%=strBuildUserName%>">
- <input name="FillUserID" type="hidden" value="<%=iFillUserID%>">
- <input name="FillUserName" type="hidden" value="<%=strFillUserName%>">
- <input name="IsPigeonholed" type="hidden" value="<%=bIsPigeonholed%>">
- <input name="CurrentFlowTacheID" type="hidden" value="<%=iCurrentFlowTacheID%>">
- <input name="IsReminded" type="hidden" value="<%=strIsReminded%>">
- <input name="RemindTime" type="hidden" value="<%=strRemindTime%>">
- <input name="TacheStatus" type="hidden" value="<%=strTacheStatus%>">
- <input name="OrderBy" type="hidden" value="<%=strOrderBy%>">
- <input name="IsDesc" type="hidden" value="<%=strIsDesc%>">
- <br><br>
- </form>
- <form name="DeleteDocument" action="DelNoUsefulDocAction.jsp?SysDirID=<%=iSysDirID%>" method="post" onsubmit="return checkDeleteDocument();">
- <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
- <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
- <th width="2%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
- <th width="4%" nowrap><font color="#000000">序号</font></th>
- <th width="14%" nowrap><font color="#000000"><a href="" onclick="changeorder('a.DocumentName');return false;">公文名称</a><%
- if(strOrderBy.equalsIgnoreCase("a.DocumentName"))
- {
- if(strIsDesc.equalsIgnoreCase("True"))
- out.print("↓");
- else
- out.print("↑");
- }
- %></font></th>
- <th width="7%" nowrap><font color="#000000"><a href="" onclick="changeorder('d.Name');return false;">填写用户</a><%
- if(strOrderBy.equalsIgnoreCase("d.Name"))
- {
- if(strIsDesc.equalsIgnoreCase("True"))
- out.print("↓");
- else
- out.print("↑");
- }
- %></font></th>
- <th width="7%" nowrap><font color="#000000"><a href="" onclick="changeorder('c.Name');return false;">生成用户</a><%
- if(strOrderBy.equalsIgnoreCase("c.Name"))
- {
- if(strIsDesc.equalsIgnoreCase("True"))
- out.print("↓");
- else
- out.print("↑");
- }
- %></font></th>
- <th width="12%" nowrap><font color="#000000"><a href="" onclick="changeorder('a.BuildTime');return false;">创建时间</a><%
- if(strOrderBy.equalsIgnoreCase("a.BuildTime"))
- {
- if(strIsDesc.equalsIgnoreCase("True"))
- out.print("↓");
- else
- out.print("↑");
- }
- %></font></th>
- </tr>
- <%
- Vector vt = DocumentManagerPlus.getNoUsefulRecordBySearch(strID, strDocumentName, iDocFlowTempletID, strDocFlowTempletName, iBuildUserID,
- strBuildUserName, iFillUserID, strFillUserName, bIsPigeonholed, iCurrentFlowTacheID,
- strCurrentFlowTacheName, iTacheStatus, strTacheStatus, strIsReminded, strRemindTime,
- strBuildTimeFrom, strBuildTimeTo, strOrderBy, bIsDesc);
- if(iPage<1)iPage=1;
- int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
- if(iPage>iPageCount) iPage=1;
- for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;i++)
- {
- strID = ((Vector)vt.get(i)).get(0).toString();
- if(i % 2 == 0)
- {
- out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
- }
- else
- {
- out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
- }
- out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
- out.println("<td align="right" valign="middle">" + (i+1) + "</td>");
- out.println("<td align="left" valign="middle" nowrap title="" + ((Vector)vt.get(i)).get(1).toString() + "" ><input type="checkbox" name="ID" value="" + strID + ""><a href="ShowDocumentAllInfo.jsp?SysDirID=" + iSysDirID + "&ID=" + strID + "" target="_blank">" + ((Vector)vt.get(i)).get(1).toString() + "</a> </td>");
- out.println("<td align="left" valign="middle" nowrap >" + ((Vector)vt.get(i)).get(11).toString() + " </td>");
- out.println("<td align="left" valign="middle" nowrap >" + ((Vector)vt.get(i)).get(10).toString() + " </td>");
- out.println("<td align="left" valign="middle" nowrap >" + StringNew.GetDateString(((Vector)vt.get(i)).get(3).toString(),"yyyy年MM月dd日 HH时mm分") + " </td>");
- out.println("</tr>");
- }
- %>
- <tr>
- <th align="center" valign="top" colspan="5">
- <%
- if(iPage<2)
- out.print("首页 上页");
- else
- out.print("<a href="" onclick="changepage(" + 1 + ");return false;">首页</a> <a href="" onclick="changepage(" + (iPage-1) + ");return false;">上页</a>");
- out.print(" 当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页 ");
- if(iPage>=iPageCount)
- out.print("下页 末页");
- else
- out.print("<a href="" onclick="changepage(" + (iPage+1) + ");return false;">下页</a> <a href="" onclick="changepage(" + iPageCount + ");return false;">末页</a>");
- %>
- </th>
- <th colspan="2">
- <input name="selectall" type="button" value="全部选择" onclick="checktall()" style="background-color: #FFFFFF; border: 1 solid #000000">
- <input name="subm" type="submit" value="删除" style="background-color: #FFFFFF; border: 1 solid #000000">
- </th>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- </table>
- </body>
- </html>