asset_list.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:7k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.db.*"%>
  4. <%@ page import = "cn.js.fan.web.*"%>
  5. <%@ page import = "cn.js.fan.util.*"%>
  6. <%@ page import = "com.redmoon.oa.asset.*"%>
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  8. <html>
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  11. <title>资产查询列表</title>
  12. <link href="../common.css" rel="stylesheet" type="text/css">
  13. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  14. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  15. </head>
  16. <body>
  17. <%
  18. String priv = "oa.asset";
  19. if (!privilege.isUserPrivValid(request, priv)) {
  20. out.println(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request, "pvg_invalid")));
  21. return;
  22. }
  23. String op = ParamUtil.get(request, "op");
  24. if (op.equals("del")) {
  25. AssetMgr am = new AssetMgr();
  26. boolean re = false;
  27. try {
  28.   re = am.del(request);
  29. }
  30. catch (ErrMsgException e) {
  31. out.print(StrUtil.Alert(e.getMessage()));
  32. }
  33. if (re)
  34. out.print(StrUtil.Alert_Redirect("操作成功!", "asset_list.jsp"));
  35. }%>
  36. <%@ include file="asset_inc_menu_top.jsp"%>
  37. <br>
  38. <table width="100%" border="0">
  39.   <tr>
  40.     <td width="100%" align="right"><table width="90%" height="25" border="0" align="center" cellpadding="0" cellspacing="0">
  41.       <tr>
  42.         <td width="298" align="right" backgroun="images/title1-back.gif"><%
  43. String sql;
  44. String myname = privilege.getUser(request);
  45. sql = "select id from asset_info" ;
  46. String querystr = "";
  47. String cond = "";
  48. if (op.equals("search")) {
  49.     String name=ParamUtil.get(request,"name");
  50. String strTypeId=ParamUtil.get(request,"typeId");
  51. String number=ParamUtil.get(request,"number");
  52. if (!strTypeId.equals("all")){
  53.     if (cond.equals(""))
  54. cond = " where typeId=" + strTypeId;
  55. else
  56.         cond += " and  typeId=" + strTypeId;
  57. }
  58. if (!number.equals(""))
  59.     if (cond.equals(""))
  60. cond = " where number =" + StrUtil.sqlstr(number);
  61. else
  62. cond += " and number =" + StrUtil.sqlstr(number); 
  63. if (!name.equals(""))
  64.     if (cond.equals(""))
  65.    cond = " where name like " + StrUtil.sqlstr("%" + name + "%");
  66. else   
  67.    cond += " and name like " + StrUtil.sqlstr("%" + name + "%");
  68.     sql += cond;
  69. querystr += "op=" + op + "&name=" + name + "&number=" + number+ "&typeId=" + strTypeId;
  70. }
  71. sql += " order by regDate desc";
  72. int pagesize = 10;
  73. Paginator paginator = new Paginator(request);
  74. int curpage = paginator.getCurPage();
  75. AssetDb adb = new AssetDb();
  76. ListResult lr = adb.listResult(sql, curpage, pagesize);
  77. int total = lr.getTotal();
  78. Vector v = lr.getResult();
  79.     Iterator ir = null;
  80. if (v!=null)
  81. ir = v.iterator();
  82. paginator.init(total, pagesize);
  83. // 设置当前页数和总页数
  84. int totalpages = paginator.getTotalPages();
  85. if (totalpages==0)
  86. {
  87. curpage = 1;
  88. totalpages = 1;
  89. }
  90. %>
  91.         </td>
  92.         <td width="299" align="right" backgroun="images/title1-back.gif"> 找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></b></td>
  93.       </tr>
  94.     </table></td>
  95.   </tr>
  96.   <tr>
  97.     <td><table width="100%" height="25" border="0" cellpadding="0" cellspacing="0"  bgcolor="#d4def6" >
  98.       <tbody>
  99.         <tr>
  100.           <td width="12%"></td>
  101.         </tr>
  102.         <tr bgcolor="#66CCFF">
  103.           <td align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">资产名称</td>
  104.           <td width="7%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">资产编号</td>
  105.           <td width="7%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">资产类别</td>
  106.           <td width="6%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">资产型号</td>
  107.           <td width="7%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">资产原值</td>
  108.           <td width="8%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">月折旧额</td>
  109.           <td width="5%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">领用人</td>
  110.           <td width="7%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">领用时间</td>
  111.           <td width="5%" align="middle" nowrap="nowrap" bgcolor="#66CCFF" class="right-title">操作</td>
  112.         </tr>
  113.       </tbody>
  114.     </table>
  115.         <table id="mainTable" cellspacing="0" bordercolordark="#ffffff" cellpadding="2" width="100%" bordercolorlight="#d9e3ed" border="1" frame="void">
  116.           <%
  117.    int i = 0;
  118. AssetTypeDb atdb = new AssetTypeDb();
  119. while (ir!=null && ir.hasNext()) {
  120. adb = (AssetDb)ir.next();
  121. i++;
  122. int id = adb.getId();
  123. int typeId = adb.getTypeId();
  124. atdb = atdb.getAssetTypeDb(typeId);
  125. %>
  126.   <tbody>
  127.             <tr bgcolor="#FFFFFF">
  128.               <td width="12%" height="22" align="center" valign="top"><a href="#" class="STYLE2" onClick="window.open('asset_modify.jsp?id=<%=adb.getId()%>','','height=260, width=570, top=200,left=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no,status=no')"><%=adb.getName()%></a></td>
  129.               <td width="7%" valign="top"><%=adb.getNumber()%></td>
  130.               <td width="7%" valign="top"><%=atdb.getName()%></td>
  131.               <td width="6%" valign="top"><%=adb.getType()%></td>
  132.               <td width="7%" valign="top"><%=adb.getPrice()%></td>
  133.       <td width="8%" valign="top">
  134.   <%
  135. double price = 0;
  136. if (atdb.getDepreciationYears() > 0)
  137. price =  (adb.getPrice() - adb.getPrice() * StrUtil.toDouble(atdb.getDepreciationRate()))/atdb.getDepreciationYears() / 12;
  138. else
  139.     price = 0;
  140.   %>
  141.   <%=NumberUtil.round(price, 2)%>
  142.   </td>
  143.               <td width="5%" valign="top"><%=adb.getKeeper()%></td>
  144.               <td width="7%" valign="top">
  145.   <% if (adb.getStartDate()==null) {
  146.        out.print("");
  147.  }
  148.  else {
  149.    out.print(adb.getStartDate()); 
  150.  }
  151.   %>
  152.   </td>
  153.               <td width="5%" valign="top"><a href="#" onClick="if (confirm('您确定要删除<%=adb.getName()%>吗?')) window.location.href='?op=del&id=<%=adb.getId()%>'">删除</a></td>
  154.             </tr>
  155.           </tbody>
  156.     <%}%>
  157.       </table>
  158.     </td>
  159.   </tr>
  160.   <tr>
  161.     <td><div align="right">
  162.       <%
  163. out.print(paginator.getCurPageBlock("?"+querystr));
  164.   %>
  165.       &nbsp;</div></td>
  166.   </tr>
  167.   <tr>
  168.     <td>&nbsp;</td>
  169.   </tr>
  170. </table>
  171. </body>
  172. </html>