workplan_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.util.*"%>
  5. <%@ page import = "com.redmoon.oa.person.*"%>
  6. <%@ page import = "com.redmoon.oa.workplan.*"%>
  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. </head>
  16. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  17. <%
  18. String priv = "read";
  19. if (!privilege.isUserPrivValid(request, priv))
  20. {
  21. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  22. return;
  23. }
  24. %>
  25. <%@ include file="workplan_inc_menu_top.jsp"%>
  26. <br>
  27. <table width="494" border="0" align="center" cellpadding="0" cellspacing="0" class="main">
  28.   <tr> 
  29.     <td height="23" valign="middle" class="right-title"><span>&nbsp;工作计划</span></td>
  30.   </tr>
  31.   <tr> 
  32.     <td valign="top" background="images/tab-b-back.gif">
  33. <%
  34. String sql;
  35. String myname = privilege.getUser(request);
  36. sql = "select p.id from work_plan p, work_plan_user u where u.workPlanId=p.id and u.userName=" + StrUtil.sqlstr(privilege.getUser(request));
  37. String querystr = "";
  38. String op = ParamUtil.get(request, "op");
  39. if (op.equals("search")) {
  40. String title = ParamUtil.get(request, "title");
  41. String content = ParamUtil.get(request, "content");
  42. String beginDate = ParamUtil.get(request, "beginDate");
  43. String endDate = ParamUtil.get(request, "endDate");
  44. String typeId = ParamUtil.get(request, "typeId");
  45. if (!title.equals(""))
  46. sql += " and p.title like " + StrUtil.sqlstr("%" + title + "%");
  47. if (!content.equals(""))
  48. sql += " and p.content like " + StrUtil.sqlstr("%" + content + "%");
  49. if (!beginDate.equals(""))
  50. sql += " and p.beginDate>=" + StrUtil.sqlstr(beginDate);
  51. if (!endDate.equals(""))
  52. sql += " and p.endDate<=" + StrUtil.sqlstr(endDate);
  53. if (!typeId.equals("all"))
  54. sql += " and p.typeId=" + typeId;
  55. querystr += "op=search&title=" + StrUtil.UrlEncode(title) + "&content=" + StrUtil.UrlEncode(content) + "&beginDate=" + beginDate + "&endDate=" + endDate + "&typeId=" + typeId;
  56. }
  57. if (op.equals("mine"))
  58. sql = "select id from work_plan where author=" + StrUtil.sqlstr(privilege.getUser(request));
  59. int pagesize = 10;
  60. Paginator paginator = new Paginator(request);
  61. int curpage = paginator.getCurPage();
  62. WorkPlanDb wpd = new WorkPlanDb();
  63. ListResult lr = wpd.listResult(sql, curpage, pagesize);
  64. int total = lr.getTotal();
  65. Vector v = lr.getResult();
  66.     Iterator ir = null;
  67. if (v!=null)
  68. ir = v.iterator();
  69. paginator.init(total, pagesize);
  70. // 设置当前页数和总页数
  71. int totalpages = paginator.getTotalPages();
  72. if (totalpages==0)
  73. {
  74. curpage = 1;
  75. totalpages = 1;
  76. }
  77. %>
  78.       <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  79.         <tr> 
  80.           <td width="47">&nbsp;</td>
  81.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  82.         </tr>
  83.       </table> 
  84.       <table width="98%" border="0" align="center" cellpadding="2" cellspacing="1">
  85.         <tr align="center" bgcolor="#C4DAFF"> 
  86.           <td width="26%" bgcolor="#C4DAFF">标题</td>
  87.           <td width="20%" bgcolor="#C4DAFF">拟定者</td>
  88.           <td width="21%" bgcolor="#C4DAFF">开始日期</td>
  89.           <td width="16%" bgcolor="#C4DAFF">结束日期</td>
  90.           <td width="17%" bgcolor="#C4DAFF">操作</td>
  91.         </tr>
  92.       <%
  93.    int i = 0;
  94. UserMgr um = new UserMgr(); 
  95. while (ir!=null && ir.hasNext()) {
  96. wpd = (WorkPlanDb)ir.next();
  97. i++;
  98. int id = wpd.getId();
  99. String beginDate = DateUtil.format(wpd.getBeginDate(), "yyyy-MM-dd");
  100. String endDate = DateUtil.format(wpd.getEndDate(), "yyyy-MM-dd");
  101. %>
  102.         <tr align="center" bgcolor="#EEEEEE"> 
  103.           <td width="26%" bgcolor="#EEEEEE"> <a href=workplan_show.jsp?id=<%=id%>><%=wpd.getTitle()%></a></td>
  104.           <td width="20%" bgcolor="#EEEEEE"><%=um.getUserDb(wpd.getAuthor()).getRealName()%></td>
  105.           <td width="21%" bgcolor="#EEEEEE"><%=beginDate%></td>
  106.           <td width="16%" bgcolor="#EEEEEE"><%=endDate%></td>
  107.           <td width="17%" bgcolor="#EEEEEE"><a href="workplan_edit.jsp?id=<%=id%>">编辑</a>&nbsp;&nbsp;<a href="workplan_do.jsp?op=del&id=<%=id%>">删除</a></td>
  108.         </tr>
  109.       <%
  110. }
  111. %>      </table>
  112.       <br>
  113.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  114.         <tr> 
  115.           <td width="1%" height="23">&nbsp;</td>
  116.           <td height="23" valign="baseline"> 
  117.             <div align="right"> 
  118.             <%
  119. out.print(paginator.getCurPageBlock("?"+querystr));
  120. %>
  121.               &nbsp;</div></td>
  122.         </tr>
  123.       </table>
  124.     </td>
  125.   </tr>
  126.   <tr> 
  127.     <td height="9">&nbsp;</td>
  128.   </tr>
  129. </table>
  130. </body>
  131. </html>