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

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.vehicle.*"%>
  7. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>车辆管理</title>
  13. <link href="../common.css" rel="stylesheet" type="text/css">
  14. <%@ include file="../inc/nocache.jsp"%>
  15. <style type="text/css">
  16. <!--
  17. .STYLE2 {color: #0033FF}
  18. .STYLE3 {color: #FF0000}
  19. -->
  20. </style>
  21. </head>
  22. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  23. <%@ include file="vehicle_inc_apply_top.jsp"%>
  24. <br>
  25. <table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="main">
  26.   <tr> 
  27.     <td width="840" height="23" valign="middle" class="right-title"><span>&nbsp;车辆使用管理</span></td>
  28.   </tr>
  29.   <tr> 
  30.     <td valign="top" background="images/tab-b-back.gif">
  31. <%
  32. String sql = "";
  33. String op = ParamUtil.get(request, "op");
  34. String result = ParamUtil.get(request, "result");
  35. String querystr = "";
  36.     
  37. if (op.equals("search")) {
  38.    try{
  39.       sql = VehicleSQLBuilder.getVehicleResultSearchSql(request);
  40.    }
  41.    catch (ErrMsgException e) {
  42.       out.print(StrUtil.Alert_Back(e.getMessage()));
  43.    }
  44.    querystr += "result=" + StrUtil.UrlEncode(ParamUtil.get(request, "result")) + "&licenseNo=" + StrUtil.UrlEncode(ParamUtil.get(request, "licenseNo")) + "&beginDate=" + ParamUtil.get(request, "beginDate")
  45.                     + "&endDate=" + ParamUtil.get(request, "endDate") + "&person=" + StrUtil.UrlEncode(ParamUtil.get(request, "person")) + "&dept=" + StrUtil.UrlEncode(ParamUtil.get(request, "depts")) + "&applier=" + StrUtil.UrlEncode(ParamUtil.get(request, "applier"));
  46. }else{
  47.    if (result.equals(VehicleSQLBuilder.RESULT_APPLY)) {
  48.        sql = VehicleSQLBuilder.getVehicleApplySearchSql();
  49.    }else{
  50.        if (result.equals(VehicleSQLBuilder.RESULT_USED)) {
  51.            sql = VehicleSQLBuilder.getVehicleUsedSearchSql();
  52.        }else{
  53.        if (result.equals(VehicleSQLBuilder.RESULT_DISAGREE)) {
  54.               sql = VehicleSQLBuilder.getVehicleDisagreeSearchSql();
  55.            }else{
  56.       sql = VehicleSQLBuilder.getVehicleAgreeSearchSql();    
  57.            }  
  58.        }   
  59.    }
  60.    if(result == VehicleSQLBuilder.RESULT_AGREE){
  61.       out.print("result="+result);
  62.    }
  63. }
  64. int pagesize = 10;
  65. Paginator paginator = new Paginator(request);
  66. int curpage = paginator.getCurPage();
  67. VehicleApplyDb vad = new VehicleApplyDb();
  68. ListResult lr = vad.listResult(sql, curpage, pagesize);
  69. int total = lr.getTotal();
  70. Vector v = lr.getResult();
  71.     Iterator ir = null;
  72. if (v!=null)
  73. ir = v.iterator();
  74. paginator.init(total, pagesize);
  75. // 设置当前页数和总页数
  76. int totalpages = paginator.getTotalPages();
  77. if (totalpages==0)
  78. {
  79. curpage = 1;
  80. totalpages = 1;
  81. }
  82. %>
  83.       <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  84.         <tr> 
  85.           <td width="47">&nbsp;</td>
  86.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  87.         </tr>
  88.       </table> 
  89.       <form name="form1" action="vehicle_maintenance_add.jsp" method="post">
  90.     <table width="97%" border="0" align="center" cellpadding="2" cellspacing="0" >
  91.           <tr align="center" bgcolor="#C4DAFF">
  92.             <td width="19%" height="24" >车牌号</td>
  93.             <td width="15%" bgcolor="#C4DAFF" >用车人</td>
  94.             <td width="16%" bgcolor="#C4DAFF" >事由</td>
  95.             <td width="14%" >开始时间</td>
  96.             <td width="12%" >结束时间</td>
  97.             <td width="24%" >操作</td>
  98.           </tr>
  99.         </table>
  100.     <%
  101.    int i = 0;
  102. while (ir!=null && ir.hasNext()) {
  103. vad = (VehicleApplyDb)ir.next();
  104. String lno = vad.getLicenseNo(); 
  105. if (lno.equals(""))
  106. lno = "用户尚未选定";
  107. %>
  108.       <table width="97%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#B6CFC5" bgcolor="#FFFFFF">
  109.         <tr align="center" >
  110.           <td width="19%" height="22"><%=lno%></td> 
  111.           <td width="15%"><%=vad.getPerson()%></td>
  112.   <td width="16%"><%=vad.getReason()%></td>
  113.   <td width="14%"><%=DateUtil.format(vad.getBeginDate(), "yy-MM-dd HH:mm")%></td>
  114.   <td width="12%"><%=DateUtil.format(vad.getEndDate(), "yy-MM-dd HH:mm")%></td>
  115.   <td><a href="vehicle_apply_show.jsp?flowId=<%=vad.getFlowId()%>">详细信息</a></td>
  116.   </tr>
  117.       </table>
  118.       <%}%>   
  119.   </form>
  120.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center">
  121.         <tr> 
  122.           <td width="1%" height="23">&nbsp;</td>
  123.           <td height="23" valign="baseline"> 
  124.             <div align="right">
  125.              <%
  126.    out.print(paginator.getCurPageBlock("?"+querystr));
  127.  %>
  128.             &nbsp;</div></td>
  129.         </tr>
  130.       </table>    </td>
  131.   </tr>
  132. </table>
  133. </body>
  134. </html>