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

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">
  10. </script>
  11. <SCRIPT language="JavaScript" src="/Calendar/PopUpCalendarDlg.js"></SCRIPT>
  12. </head>
  13. <body bgcolor="<%=m_session.GetString("BackColor")%>" leftmargin="0" topmargin="0">
  14.  <table width="100%" height="100%" border="0" align="center" cellspacing="0">
  15.     <tr>
  16.     <td align="center" valign="top">
  17.       <table width="100%" border="0" cellpadding="0" cellspacing="0">
  18.         <tr>
  19.           <td height="50" valign="top" background="../images/dy-back.gif">
  20.             <table width="100%" border="0" cellpadding="0" cellspacing="0">
  21.               <tr valign="middle">
  22.                 <td width="61" align="center" height="20"><img src="../images/dy-01.gif" width="38" height="36"></td>
  23.                 <td width="118" nowrap="nowrap" valign="middle"><strong><font color="#000000">车辆列表</font></strong></td>
  24.                 <td align="right" nowrap="nowrap" valign="bottom">&nbsp;
  25.                    <!-- 群增<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;-->
  26.                   <!--单增<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;-->
  27.                   <!-- 修改<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;-->
  28.                   <!-- 删除<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;-->
  29.                   <!-- 查看<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;-->
  30.                   <!-- 组合查询<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;-->
  31.                 </td>
  32.               </tr>
  33.             </table>
  34.           </td>
  35.         </tr>
  36.       </table><br>
  37. <%
  38. Request t_request = new Request(request);
  39. int iUserID = m_session.GetInt("UserID");
  40. int iTypesID = t_request.GetInt("TypesID");
  41. int iSysDirID = t_request.GetInt("SysDirID");
  42. String strTypesIDs = "";
  43. if(iTypesID<1)
  44. {
  45.     Vector vtTypes = AssetTypeManager.getBySysDirIDRecord(iSysDirID);
  46.     if(vtTypes.size()>0)
  47.     {
  48.     out.println("<table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#000000" style="">");
  49.     out.println("<tr align="center" valign="middle" bgcolor="" + m_session.GetString("TitleColor") + ""><th colspan="5">资产分类</th></tr>");
  50.     int i=0;
  51.     for(;i < vtTypes.size() ; i++)
  52.     {
  53.         if((i + 1) % 5 == 1) out.println("<tr class="DataRowsSingle" align="center" valign="middle">");
  54.         out.println("<td border="0" class="DataCols" onmouseover="mouseontd(this);" onmouseout="mouseouttd(this,'DataCols');" width="20%" title="" + ((Vector)vtTypes.get(i)).get(1).toString() + "" onclick="window.open('AssetManage.jsp?SysDirID="+iSysDirID+"&TypesID="  + ((Vector)vtTypes.get(i)).get(0).toString() + "','_self');"><a>" + ((Vector)vtTypes.get(i)).get(1).toString() + "</a></td>");
  55.         if((i + 1) % 5 == 0) out.println("</tr>");
  56.         strTypesIDs += "," + ((Vector)vtTypes.get(i)).get(0).toString();
  57.     }
  58.     if((i) % 5 != 0)
  59.     {
  60.         i= (i) % 5;
  61.         for(;i<5;i++) out.println("<td border="0" class="DataCols" onmouseover="mouseontd(this);" onmouseout="mouseouttd(this,'DataCols');" width="20%">&nbsp;</td>");
  62.         out.println("</tr>");
  63.     }
  64.     out.println("</table><br>");
  65.     strTypesIDs = strTypesIDs.substring(1);
  66.     }
  67. }
  68. else
  69. {
  70.     strTypesIDs = iTypesID + "";
  71.     out.println("<table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#000000" style="">");
  72.     out.println("<tr align="center" valign="middle" bgcolor="" + m_session.GetString("TitleColor") + ""><th colspan="5">资产分类:"+AssetTypeManager.getAssetTypeNameByID(iTypesID)+"</th></tr>");
  73.     out.println("<tr class="DataRowsDouble" align="left" valign="middle"><td colspan="5"><a href="AssetManage.jsp?SysDirID="+iSysDirID+"">返回资产根目录</a></td></tr>");
  74. }
  75. if(strTypesIDs.length()>0)
  76. {
  77. if (iTypesID>0){
  78. %>
  79.             <table width="90%" border="1" cellpadding="3" cellspacing="0" bordercolordark="#ffffff" bordercolorlight="#000000" style="">
  80.                 <tr align="center" valign="middle" bgcolor="<%=m_session.GetString("TitleColor")%>">
  81.                     <th width="6%" height="24" nowrap><img src="/images/white.gif" width="12"></th>
  82.                     <th width="6%" nowrap><font color="#000000">序号</font></th>
  83.                     <th width="30%" nowrap><font color="#000000">名称</font></th>
  84.                     <th width="8%" nowrap><font color="#000000">编号</font></th>
  85.                     <th width="10%" nowrap><font color="#000000">添加用户</font></th>
  86.                     <th width="10%" nowrap><font color="#000000">添加时间</font></th>
  87.                     <th width="10%" nowrap><font color="#000000">用车计划</font></th>
  88.                     <th width="10%" nowrap><font color="#000000">修改</font></th>
  89.                     <th width="10%" nowrap><font color="#000000">删除</font></th>
  90.                 </tr>
  91.                 <%
  92. Request m_request = new Request(request);
  93. int iPageSize = 15;
  94. int iPage = m_request.GetInt("Page");
  95. Vector vt = AssetManager.getByAssetTypeIDRecord(iTypesID);
  96. if(iPage<1)iPage=1;
  97. int iPageCount = StringNew.getPageCount(vt.size(),iPageSize);
  98. if(iPage>iPageCount) iPage=1;
  99. for(int i=(iPage-1)*iPageSize;i<vt.size()&&i<iPage*iPageSize;i++)
  100. {
  101.     String strID = ((Vector)vt.get(i)).get(0).toString();
  102.     if(i % 2 == 0)
  103.         out.println("<tr id="Row"+ i+ "" class="DataRowsSingle" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsSingle');">");
  104.     else
  105.         out.println("<tr id="Row"+ i+ "" class="DataRowsDouble" onmouseover="mouseon(this,'image" + i + "');" onmouseout="mouseout(this,'image" + i + "','DataRowsDouble');">");
  106.     out.println("<td align="right" valign="middle"><img id="image" + i + "" src="../images/lastpost1.gif" style="display:none;"> </td>");
  107.     out.println("<td align="right" valign="middle">" + (i+1) + "</td>");
  108.     String strtemp = ((Vector)vt.get(i)).get(1).toString();
  109.     if (strtemp.equalsIgnoreCase("")) strtemp = "&nbsp;";
  110.     out.println("<td align="left" valign="middle" nowrap title="" + ((Vector)vt.get(i)).get(1).toString() + "" onclick="window.open('AssetLink.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&TypesID="+iTypesID+"','_blank')"><a href="" onclick="return false;">" + strtemp + "</a></td>");
  111.     strtemp = ((Vector)vt.get(i)).get(2).toString();
  112.     if (strtemp.equalsIgnoreCase("")) strtemp = "&nbsp;";
  113.     out.println("<td align="left" valign="middle" nowrap>" + strtemp + "</td>");
  114.     out.println("<td align="center" valign="middle" nowrap>" + UserManager.getPersonnelNameByUserID(Integer.parseInt(((Vector)vt.get(i)).get(3).toString())) + "</td>");
  115.     out.println("<td align="left" valign="middle" nowrap>" + StringNew.GetDateString(((Vector)vt.get(i)).get(4).toString(),"yyyy年MM月dd日 HH时mm分") + "</td>");
  116.     out.println("<td align="center" valign="middle" nowrap><a href="PublicResManage.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&IsPlan=1" target="_blank">计划</a></td>");
  117.     out.println("<td align="center" valign="middle" nowrap><a href="EditAsset.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&TypesID="+iTypesID+"">修改</a></td>");
  118.     out.println("<td align="center" valign="middle" nowrap><a href="DelAsset.jsp?SysDirID="+iSysDirID+"&ID=" + strID + "&TypesID="+iTypesID+"" onclick="return confirm('您确实要删除该资产吗?');">删除</a></td>");
  119.     out.println("</tr>");
  120. }
  121. %>
  122.                 <tr>
  123.                     <th align="center" valign="top" colspan="6">
  124. <%
  125. String strCurrentPageURL = request.getRequestURI();
  126. if(iPage<2)
  127. out.print("首页&nbsp;&nbsp;上页");
  128. else
  129. out.print("<a href=""+ strCurrentPageURL+"?SysDirID="+iSysDirID+"&TypesID="+iTypesID+ "&Page=" + 1 + "">首页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?SysDirID="+iSysDirID+"&TypesID="+iTypesID+ "&Page=" + (iPage-1) + "">上页</a>");
  130. out.print("&nbsp;&nbsp;当前是第" + iPage + "页,共" + vt.size() + "条记录" + iPageCount + "页&nbsp;&nbsp;");
  131. if(iPage>=iPageCount)
  132. out.print("下页&nbsp;&nbsp;末页");
  133. else
  134. out.print("<a href=""+ strCurrentPageURL+"?SysDirID="+iSysDirID+"&TypesID="+iTypesID+ "&Page=" + (iPage+1) + "">下页</a>&nbsp;&nbsp;<a href=""+ strCurrentPageURL+"?SysDirID="+iSysDirID+"&TypesID="+iTypesID+ "&Page=" + iPageCount + "">末页</a>");
  135. %>
  136.                     </th>
  137.           <td colspan="9" nowrap align="center">
  138. <%
  139. //如果是根目录则无新增按钮,如是一目录则显示新增按钮。
  140. if (iTypesID<1)
  141.     out.println("&nbsp;");
  142.    else
  143.     out.println("<a href="AddAsset.jsp?SysDirID="+iSysDirID+"&TypesID="+iTypesID+""><font color="#0A0A0A"><strong>新增</strong></font></a>");
  144. %>
  145.       </td>
  146.            </table>
  147. <%
  148. }}
  149. else
  150. {
  151.     out.println("<script language="javascript">alert("您还没有建立资产分类,请先建立资产分类!");window.location="AssetTypeManage.jsp?SysDirID="+iSysDirID+"";</script>");
  152. }
  153. %>
  154.         </td>
  155.     </tr>
  156. </table>
  157. </body>
  158. </html>