BoardroomConfirmManage.jsp
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:8k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312"%>
  2. <%@ page import="com.gforce.gfoa.*,com.gforce.currency.*,java.util.*" %>
  3. <jsp:include page="/CheckLogin.jsp" flush="true"/> <% Session m_session = new Session(session); %>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta http-equiv="pragma" content="no-cache">
  7. <title>会议申请管理-- GForce OA 2.0</title>
  8. <link href="/css/txt.jsp" rel="stylesheet" type="text/css">
  9. <script language="JavaScript" src="/js/changestyle.js"></script>
  10. </head>
  11. <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
  12.    <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  13.     <tr>
  14.     <td align="center" valign="top">
  15.       <table width="100%" border="0" cellpadding="0" cellspacing="0">
  16.         <tr>
  17.           <td height="50" valign="top" background="../images/dy-back.gif">
  18.             <table width="100%" border="0" cellpadding="0" cellspacing="0">
  19.               <tr valign="middle">
  20.                 <td width="61" align="center" height="20"><img src="../images/dy-01.gif" width="38" height="36"></td>
  21.                 <td width="118" nowrap="nowrap" valign="middle"><strong><font color="#000000">会议审批</font></strong></td>
  22.                 <td align="right" nowrap="nowrap" valign="bottom">&nbsp;
  23.                    <!-- 群增<img src="../images/MulAdd.gif" onMouseOver="this.src='../images/MulAdd_a.gif';" onMouseOut="this.src='../images/MulAdd.gif';" border="0" height="22" width="59">&nbsp;-->
  24.                   <a href="AddBoardroomApply.jsp"><img src="/images/Single.gif" onMouseOver="this.src='/images/Single_a.gif';" onMouseOut="this.src='/images/Single.gif';" border="0" height="22" width="59">&nbsp;</a>
  25.                   <!-- 修改<img src="../images/Update.gif" onMouseOver="this.src='../images/Update_a.gif';" onMouseOut="this.src='../images/Update.gif';" border="0" height="22" width="59">&nbsp;-->
  26.                   <!-- 删除<img src="../images/Del.gif" onMouseOver="this.src='../images/Del_a.gif';" onMouseOut="this.src='../images/Del.gif';" border="0" height="22" width="59">&nbsp;-->
  27.                   <!-- 查看<img src="../images/Query.gif" onMouseOver="this.src='../images/Query_a.gif';" onMouseOut="this.src='../images/Query.gif';" border="0" height="22" width="59">&nbsp;-->
  28.                   <!-- 组合查询<img src="../images/GroupQuery.gif" onMouseOver="this.src='../images/GroupQuery_a.gif';" onMouseOut="this.src='../images/GroupQuery.gif';" border="0" height="22" width="79">&nbsp;-->
  29.                 </td>
  30.               </tr>
  31.             </table>
  32.           </td>
  33.         </tr>
  34.       </table>
  35. <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  36.     <tr>
  37.         <td align="center" valign="top"><p>&nbsp;</p>
  38.             <table width="95%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
  39.                 <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
  40.                     <th width="2%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
  41.                     <th width="3%" nowrap><font color="#000000">序号</font></th>
  42.                     <th width="3%" nowrap><font color="#000000">会议主题</font></th>
  43.                     <th width="15%" nowrap><font color="#000000">会议室</font></th>
  44.                     <th width="8%" nowrap><font color="#000000">预计开始时间</font></th>
  45.                     <th width="8%" nowrap><font color="#000000">预计结束时间</font></th>
  46.                     <th width="8%" nowrap><font color="#000000">申请人</font></th>
  47.                     <th width="8%" nowrap><font color="#000000">申请时间</font></th>
  48.                     <th width="4%" nowrap><font color="#000000">是否同意</font></th>
  49.                     <th width="4%" nowrap><font color="#000000">修改</font></th>
  50.                     <th width="4%" nowrap><font color="#000000">删除</font></th>
  51.                     <th width="4%" nowrap><font color="#000000">审批</font></th>
  52.                 </tr>
  53. <%
  54. Request m_request = new Request(request);
  55. int iPageSize = 18;
  56. int iPage = m_request.GetInt("Page");
  57. Vector vt = BoardroomApplyManager.getAllRecord();
  58. if(iPage<1)iPage=1;
  59. int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
  60. if(iPage>iPageCount) iPage=1;
  61. for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;i++)
  62. {
  63.     String strID = ((Vector)vt.get(i)).get(0).toString();
  64.     if(i % 2 == 0)
  65.         out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
  66.     else
  67.         out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
  68.     out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
  69.     out.println("<td align="Center" valign="middle">" + (i+1) + "</td>");
  70.     out.println("<td align="left" valign="middle" nowrap title="" + ((Vector)vt.get(i)).get(1).toString() + ""><a href="ShowBoardroomApply.jsp?ID=" + strID + "" target="_blank">" + ((Vector)vt.get(i)).get(1).toString() + "</a></td>");
  71.     out.println("<td align="Center" valign="middle" nowrap>" + BoardroomManager.getNameByBoardroomID(Integer.parseInt(((Vector)vt.get(i)).get(10).toString())) + "</td>");
  72.     out.println("<td align="center" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(2).toString(),"MM-dd HH:mm") + "</td>");
  73.     out.println("<td align="center" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(3).toString(),"MM-dd HH:mm") + "</td>");
  74.     out.println("<td align="Center" valign="middle" nowrap>" + UserManager.getPersonnelNamesByUserIDs(((Vector)vt.get(i)).get(4).toString()) + "</td>");
  75.     out.println("<td align="center" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(5).toString(),"MM-dd HH:mm") + "</td>");
  76.     if (!((Vector)vt.get(i)).get(8).toString().equalsIgnoreCase(""))
  77.     {
  78.       if (((Vector)vt.get(i)).get(6).toString().equalsIgnoreCase("true"))
  79.         out.println("<td align="center" valign="middle" nowrap><font color="#339900">同意</font></td>");
  80.       else
  81.         out.println("<td align="center" valign="middle" nowrap>不同意</td>");
  82.     }
  83.     else
  84.     {
  85.       out.println("<td align="center" valign="middle" nowrap>未审批</td>");
  86.     }
  87.     out.println("<td align="center" valign="middle" nowrap><a href="EditBoardroomApply.jsp?ID=" + strID + "">修改</a></td>");
  88.     out.println("<td align="center" valign="middle" nowrap><a href="DelBoardroomApply.jsp?ID=" + strID + "" onclick="return confirm('您确实要删除该会议申请吗?');">删除</a></td>");
  89.     out.println("<td align="center" valign="middle" nowrap><a href="BoardroomConfirm.jsp?ID=" + strID + "" target="_blank">审批</a></td>");
  90.     out.println("</tr>");
  91. }
  92. %>
  93.                 <tr>
  94.                     <th align="center" valign="top" colspan="12">
  95. <%
  96. String strCurrentPageURL = request.getRequestURI();
  97. if(iPage<2)
  98. out.print("首页&nbsp;&nbsp;上页");
  99. else
  100. out.print("<a href=""+ strCurrentPageURL+"?Page=" + 1 + "">首页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + (iPage-1) + "">上页</a>");
  101. out.print("&nbsp;&nbsp;当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页&nbsp;&nbsp;");
  102. if(iPage>=iPageCount)
  103. out.print("下页&nbsp;&nbsp;末页");
  104. else
  105. out.print("<a href=""+ strCurrentPageURL+"?Page=" + (iPage+1) + "">下页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?Page=" + iPageCount + "">末页</a>");
  106. %>
  107.           </th>
  108.           </tr>
  109.          </table>
  110.         </td>
  111.     </tr>
  112. </table>
  113. </body>
  114. </html>