PublicResManage.jsp
资源名称:OA.rar [点击查看]
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:4k
源码类别:
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"><p> </p>
- <%
- Request m_request = new Request(request);
- int iSysDirID = m_request.GetInt("SysDirID");
- int iAssetID = m_request.GetInt("ID");
- int iIsPlan = m_request.GetInt("IsPlan");
- Vector vt = PublicResShareManager.getByAssetIDRecord(iAssetID,iIsPlan);
- %>
- <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="6%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
- <th width="6%" nowrap><font color="#000000">序号</font></th>
- <th width="55%" nowrap><font color="#000000">用车事由</font></th>
- <th width="10%" nowrap><font color="#000000">开始时间</font></th>
- <th width="10%" nowrap><font color="#000000">结束时间</font></th>
- <th width="10%" nowrap><font color="#000000">申请人</font></th>
- <th width="6%" nowrap><font color="#000000">修改</font></th>
- <th width="6%" nowrap><font color="#000000">删除</font></th>
- </tr>
- <%
- for(int i=0;i<vt.size();i++)
- {
- String 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(4).toString() +"">" + ((Vector)vt.get(i)).get(4).toString() + "</td>");
- out.println("<td align="center" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(2).toString(),"yyyy年MM月dd日HH时mm分") + "</td>");
- out.println("<td align="center" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(3).toString(),"yyyy年MM月dd日HH时mm分") + "</td>");
- out.println("<td align="center" valign="middle" nowrap>" + UserManager.getPersonnelNameByUserID(Integer.parseInt(((Vector)vt.get(i)).get(5).toString())) + "</td>");
- out.println("<td align="center" valign="middle" nowrap><a href="EditPublicRes.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&AssetID="+iAssetID+"&IsPlan="+iIsPlan+"">修改</a></td>");
- 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>");
- out.println("</tr>");
- }
- %>
- <tr align="right" valign="middle">
- <th colspan="9" nowrap align="right">
- <a href="AddPublicRes.jsp?SysDirID=<%=iSysDirID%>&AssetID=<%=iAssetID%>&IsPlan=<%=iIsPlan%>"><font color="#0A0A0A">新增</font></a>
- </th>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>