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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "com.cloudwebsoft.framework.db.*"%>
  3. <%@ page import = "cn.js.fan.db.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "java.util.*"%>
  6. <%@ page import = "cn.js.fan.web.*"%>
  7. <%@ page import = "com.redmoon.oa.person.*"%>
  8. <%@ page import = "com.redmoon.oa.*"%>
  9. <%@ page import = "com.redmoon.oa.kernel.*"%>
  10. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  11. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  12. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  13. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  14. <html>
  15. <head>
  16. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  17. <title>日程列表</title>
  18. <link href="default.css" rel="stylesheet" type="text/css">
  19. <%@ include file="../inc/nocache.jsp"%>
  20. <script language="JavaScript" type="text/JavaScript">
  21. <!--
  22. function MM_preloadImages() { //v3.0
  23.   var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
  24.     var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
  25.     if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
  26. }
  27. //-->
  28. </script>
  29. <script language=javascript>
  30. <!--
  31. function openWin(url,width,height)
  32. {
  33.   var newwin=window.open(url,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=50,left=120,width="+width+",height="+height);
  34. }
  35. //-->
  36. </script>
  37. </head>
  38. <body background="" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
  39. <%
  40. if (!privilege.isUserPrivValid(request, "admin")) {
  41. out.println(SkinUtil.makeErrMsg(request, SkinUtil.LoadString(request, "pvg_invalid")));
  42. return;
  43. }
  44. String op = ParamUtil.get(request, "op");
  45. SchedulerManager sm = SchedulerManager.getInstance();
  46. if (op.equals("start")) {
  47. sm.start();
  48. out.print(StrUtil.Alert("调度启动!"));
  49. response.sendRedirect("scheduler_list.jsp");
  50. return;
  51. }
  52. if (op.equals("stop")) {
  53. sm.shutdown();
  54. out.print(StrUtil.Alert("调度停止!"));
  55. response.sendRedirect("scheduler_list.jsp");
  56. return;
  57. }
  58. %>
  59. <table cellSpacing="0" cellPadding="0" width="100%">
  60.   <tbody>
  61.     <tr>
  62.       <td class="head">调度中心</td>
  63.     </tr>
  64.   </tbody>
  65. </table>
  66. <br>
  67. <TABLE 
  68. style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid" 
  69. cellSpacing=0 cellPadding=3 width="95%" align=center>
  70.   <!-- Table Head Start-->
  71.   <TBODY>
  72.     <TR>
  73.       <TD class=thead style="PADDING-LEFT: 10px" noWrap width="70%">&nbsp;</TD>
  74.     </TR>
  75.     <TR class=row style="BACKGROUND-COLOR: #fafafa">
  76.       <TD height="175" align="center" style="PADDING-LEFT: 10px"><p>
  77.   状态:<%=sm.isStarted()?"已启动":"未启动"%>&nbsp;&nbsp;
  78.      <%if (!sm.isStarted() || sm.isShutdown()) {%>
  79. <a href="?op=start">开始调度</a>
  80. <%}else{%>
  81. <a href="?op=stop">停止调度</a>
  82. <%}%><br>
  83.           <%
  84. JobUnitDb jud = new JobUnitDb();
  85. if (op.equals("del")) {
  86. int delid = ParamUtil.getInt(request, "id");
  87. JobUnitDb ldb = (JobUnitDb)jud.getQObjectDb(new Integer(delid));
  88. if (ldb.del())
  89. out.print(StrUtil.Alert("操作成功 "));
  90. else
  91. out.print(StrUtil.Alert("操作失败"));
  92. }
  93. String sql;
  94. sql = "select ID from " + jud.getTable().getName() + " order by id asc";
  95. int pagesize = 10;
  96. Paginator paginator = new Paginator(request);
  97. int curpage = paginator.getCurPage();
  98. ListResult lr = jud.listResult(new JdbcTemplate(), sql, curpage, pagesize);
  99. int total = lr.getTotal();
  100. Vector v = lr.getResult();
  101.     Iterator ir = null;
  102. if (v!=null)
  103. ir = v.iterator();
  104. paginator.init(total, pagesize);
  105. // 设置当前页数和总页数
  106. int totalpages = paginator.getTotalPages();
  107. if (totalpages==0)
  108. {
  109. curpage = 1;
  110. totalpages = 1;
  111. }
  112. %>
  113. </p>
  114.         <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  115.           <tr>
  116.             <td align="right"> 找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %> </td>
  117.           </tr>
  118.         </table>
  119.         <table width="98%" border="0" align="center" cellpadding="2" cellspacing="0" style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid">
  120.           <tr>
  121.             <td width="28%" align="left" class="thead">名称</td>
  122.             <td width="22%" align="left" class="thead"><span class="thead"><img src="images/tl.gif" align="absMiddle" width="10" height="15"></span>调 度</td>
  123.             <td width="19%" align="left" class="thead"><img src="images/tl.gif" align="absMiddle" width="10" height="15">用户</td>
  124.             <td width="31%" align="left" class="thead"><span class="thead"><img src="images/tl.gif" align="absMiddle" width="10" height="15"></span>操 作</td>
  125.           </tr>
  126.         <%
  127. while (ir.hasNext()) {
  128. jud = (JobUnitDb)ir.next();
  129. %>
  130.           <tr>
  131.             <td width="28%" height="22" align="left"><%=jud.get("job_name")%></td>
  132.             <td align="left">&nbsp;&nbsp;<%=jud.getString("cron")%></td>
  133.             <td align="left">&nbsp;&nbsp;<%=jud.getString("user_name")%></td>
  134.             <td width="31%" align="left">
  135. <%if (jud.getString("job_class").equals("com.redmoon.oa.job.WorkflowJob")) {%>
  136. <a href="scheduler_edit.jsp?id=<%=jud.getInt("id")%>">编辑</a>
  137. <%}%>
  138. &nbsp;&nbsp;<a href="?op=del&id=<%=jud.get("id")%>">删除</a></td>
  139.           </tr>
  140.         <%}%>
  141.         </table>
  142.         <br>
  143.         <table width="100%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  144.           <tr>
  145.             <td height="23" align="right">&nbsp;
  146.                 <%
  147. String querystr = "";
  148. out.print(paginator.getCurPageBlock("?"+querystr));
  149. %>
  150.               &nbsp;&nbsp;</td>
  151.           </tr>
  152.           <tr>
  153.             <td height="23" align="right"><span style="WIDTH: 95%">
  154.               <INPUT name="image" type=image 
  155. onclick="javascript:location.href='scheduler_add.jsp';" src="images/btn_add.gif" width=80 
  156. height=20>
  157.             </span></td>
  158.           </tr>
  159.         </table>
  160.       <br></TD>
  161.     </TR>
  162.     <!-- Table Body End -->
  163.     <!-- Table Foot -->
  164.     <TR>
  165.       <TD class=tfoot align=right>&nbsp;</TD>
  166.     </TR>
  167.     <!-- Table Foot -->
  168.   </TBODY>
  169. </TABLE>
  170. <br>
  171. </body>
  172. </html>