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

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"><p>&nbsp;</p>
  15. <%
  16. Request m_request = new Request(request);
  17. int iSysDirID = m_request.GetInt("SysDirID");
  18. int iAssetID = m_request.GetInt("ID");
  19. int iIsPlan = m_request.GetInt("IsPlan");
  20. Vector vt = PublicResShareManager.getByAssetIDRecord(iAssetID,iIsPlan);
  21. %>
  22.             <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#0a0a0a" style="">
  23.                 <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
  24.                     <th width="6%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
  25.                     <th width="6%" nowrap><font color="#000000">序号</font></th>
  26.                     <th width="55%" nowrap><font color="#000000">用车事由</font></th>
  27.                     <th width="10%" nowrap><font color="#000000">开始时间</font></th>
  28.                     <th width="10%" nowrap><font color="#000000">结束时间</font></th>
  29.                     <th width="10%" nowrap><font color="#000000">申请人</font></th>
  30.                     <th width="6%" nowrap><font color="#000000">修改</font></th>
  31.                     <th width="6%" nowrap><font color="#000000">删除</font></th>
  32.                 </tr>
  33. <%
  34. for(int i=0;i<vt.size();i++)
  35. {
  36.     String strID = ((Vector)vt.get(i)).get(0).toString();
  37.     if(i % 2 == 0)
  38.         out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
  39.     else
  40.     out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
  41.     out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
  42.     out.println("<td align="right" valign="middle">" + (i+1) + "</td>");
  43.     out.println("<td align="left" valign="middle" nowrap title="" + ((Vector)vt.get(i)).get(4).toString() +"">" + ((Vector)vt.get(i)).get(4).toString() + "</td>");
  44.     out.println("<td align="center" valign="middle" nowrap>" +  StringNew.GetDateString(((Vector)vt.get(i)).get(2).toString(),"yyyy年MM月dd日HH时mm分") + "</td>");
  45.     out.println("<td align="center" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(3).toString(),"yyyy年MM月dd日HH时mm分") + "</td>");
  46.     out.println("<td align="center" valign="middle" nowrap>" + UserManager.getPersonnelNameByUserID(Integer.parseInt(((Vector)vt.get(i)).get(5).toString())) + "</td>");
  47.     out.println("<td align="center" valign="middle" nowrap><a href="EditPublicRes.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&AssetID="+iAssetID+"&IsPlan="+iIsPlan+"">修改</a></td>");
  48.     out.println("<td align="center" valign="middle" nowrap><a href="DelPublicRes.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&AssetID="+iAssetID+"&IsPlan="+iIsPlan+"" onclick="return confirm('您确实要删除该共享吗?');">删除</a></td>");
  49.     out.println("</tr>");
  50. }
  51. %>
  52.                 <tr align="right" valign="middle">
  53.                     <th colspan="9" nowrap align="right">
  54.                        <a href="AddPublicRes.jsp?SysDirID=<%=iSysDirID%>&AssetID=<%=iAssetID%>&IsPlan=<%=iIsPlan%>"><font color="#0A0A0A">新增</font></a>
  55.                     </th>
  56.                 </tr>
  57.     </table>
  58.     </td>
  59.     </tr>
  60. </table>
  61. </body>
  62. </html>