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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import="java.util.*"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.db.*"%>
  5. <%@ page import="com.redmoon.oa.person.*"%>
  6. <%@ page import="com.redmoon.oa.flow.*"%>
  7. <%@ page import="com.redmoon.oa.dept.*"%>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  9. <html>
  10. <head>
  11. <title>工作流管理</title>
  12. <link href="default.css" rel="stylesheet" type="text/css">
  13. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  14. <style type="text/css">
  15. <!--
  16. .style4 {
  17. color: #FFFFFF;
  18. font-weight: bold;
  19. }
  20. -->
  21. </style>
  22. </head>
  23. <body bgcolor="#FFFFFF" text="#000000">
  24. <jsp:useBean id="docmanager" scope="page" class="cn.js.fan.module.cms.DocumentMgr"/>
  25. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  26. <%
  27. String priv = "admin";
  28. if (!privilege.isUserPrivValid(request,priv))
  29. {
  30. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  31. return;
  32. }
  33. %>
  34. <table cellSpacing="0" cellPadding="0" width="100%">
  35.   <tbody>
  36.     <tr>
  37.       <td height="28" class="head">工作流序列号管理</td>
  38.     </tr>
  39.   </tbody>
  40. </table>
  41. <%
  42. String strcurpage = StrUtil.getNullString(request.getParameter("CPages"));
  43. if (strcurpage.equals(""))
  44. strcurpage = "1";
  45. if (!StrUtil.isNumeric(strcurpage)) {
  46. out.print(StrUtil.makeErrMsg("标识非法!"));
  47. return;
  48. }
  49. int pagesize = 10;
  50. int curpage = Integer.parseInt(strcurpage);
  51. String op = ParamUtil.get(request, "op");
  52. String by = ParamUtil.get(request, "by");
  53. String what = ParamUtil.get(request, "what");
  54. String action = ParamUtil.get(request, "action");
  55. if (action.equals("del")) {
  56. try {
  57. int id = ParamUtil.getInt(request, "id");
  58. WorkflowSequenceDb wsd = new WorkflowSequenceDb();
  59. wsd = wsd.getWorkflowSequenceDb(id);
  60. wsd.del();
  61. out.print(StrUtil.Alert_Redirect("删除完毕!", "?op=" + op + "&by=" + by + "&what=" + StrUtil.UrlEncode(what)));
  62. }
  63. catch (ErrMsgException e) {
  64. out.print(StrUtil.Alert_Back(e.getMessage()));
  65. }
  66. }
  67. if (action.equals("add")) {
  68. String name = ParamUtil.get(request, "name").trim();
  69. long beginIndex = ParamUtil.getLong(request, "beginIndex");
  70. long curIndex = ParamUtil.getLong(request, "curIndex");
  71. int len = ParamUtil.getInt(request, "length");
  72. if (name.equals("")) {
  73. out.print(StrUtil.Alert_Back("请填写序列名称!"));
  74. }
  75. else {
  76. WorkflowSequenceDb wsd = new WorkflowSequenceDb();
  77. wsd.setBeginIndex(beginIndex);
  78. wsd.setCurIndex(curIndex);
  79. wsd.setLength(len);
  80. wsd.setName(name);
  81. if (wsd.create()) {
  82. out.print(StrUtil.Alert("操作成功!"));
  83. }
  84. else
  85. out.print(StrUtil.Alert_Back("操作失败!"));
  86. }
  87. }
  88. if (action.equals("modify")) {
  89. String name = ParamUtil.get(request, "name").trim();
  90. long beginIndex = ParamUtil.getLong(request, "beginIndex");
  91. long curIndex = ParamUtil.getLong(request, "curIndex");
  92. int len = ParamUtil.getInt(request, "length");
  93. int id = ParamUtil.getInt(request, "id");
  94. if (name.equals("")) {
  95. out.print(StrUtil.Alert_Back("请填写序列名称!"));
  96. }
  97. else {
  98. WorkflowSequenceDb wsd = new WorkflowSequenceDb();
  99. wsd = wsd.getWorkflowSequenceDb(id);
  100. wsd.setBeginIndex(beginIndex);
  101. wsd.setCurIndex(curIndex);
  102. wsd.setLength(len);
  103. wsd.setName(name);
  104. if (wsd.save()) {
  105. out.print(StrUtil.Alert("操作成功!"));
  106. }
  107. else
  108. out.print(StrUtil.Alert_Back("操作失败!"));
  109. }
  110. }
  111. WorkflowSequenceDb wf = new WorkflowSequenceDb();
  112. String sql = "select id from flow_sequence order by name asc";
  113. if (op.equals("search")) {
  114. if (by.equals("name")) {
  115. sql = "select id from flow_sequence where name like " + StrUtil.sqlstr("%" + what + "%") +  " order by name asc";
  116. }
  117. }
  118. ListResult lr = wf.listResult(sql, curpage, pagesize);
  119. int total = lr.getTotal();
  120. Paginator paginator = new Paginator(request, total, pagesize);
  121. // 设置当前页数和总页数
  122. int totalpages = paginator.getTotalPages();
  123. if (totalpages==0) {
  124. curpage = 1;
  125. totalpages = 1;
  126. }
  127. Vector v = lr.getResult();
  128. Iterator ir = null;
  129. if (v!=null)
  130. ir = v.iterator();
  131. %>
  132. <table width="80%" border="0" align="center">
  133. <form name=form1 action="?op=search" method=post>
  134.   <tr>
  135.     <td align="center">按
  136. &nbsp;
  137. <select name="by">
  138. <option value="name">名称</option>
  139. </select>
  140. &nbsp;
  141. <input name="what" >
  142. &nbsp;
  143. <input value="搜索" type=submit></td>
  144.   </tr>
  145. </form>  
  146. </table>
  147. <br>
  148. <table width="92%" border="0" align="center" class="p9">
  149.   <tr>
  150.     <td height="24" align="right">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></td>
  151.   </tr>
  152. </table>
  153. <table style="BORDER-RIGHT: #a6a398 1px solid; BORDER-TOP: #a6a398 1px solid; BORDER-LEFT: #a6a398 1px solid; BORDER-BOTTOM: #a6a398 1px solid" cellSpacing="0" cellPadding="3" width="95%" align="center">
  154.   <tbody>
  155.     <tr>
  156.       <td class="thead" style="PADDING-LEFT: 10px" noWrap width="6%">标识</td>
  157.       <td class="thead" style="PADDING-LEFT: 10px" noWrap width="29%">名称</td>
  158.       <td class="thead" noWrap width="12%"><img src="images/tl.gif" align="absMiddle" width="10" height="15">当前索引</td>
  159.       <td class="thead" noWrap width="13%"><img src="images/tl.gif" align="absMiddle" width="10" height="15">管理</td>
  160.     </tr>
  161.     <%
  162. Leaf ft = new Leaf();
  163. UserMgr um = new UserMgr();
  164. int i = 0;
  165. while (ir.hasNext()) {
  166. i ++;
  167.   WorkflowSequenceDb wsd = (WorkflowSequenceDb)ir.next(); 
  168. %>
  169.     <tr class="row" style="BACKGROUND-COLOR: #ffffff">
  170. <form name="form<%=i%>" action="?action=modify" method=post>
  171.       <td style="PADDING-LEFT: 10px">
  172.       <img src="images/arrow.gif" align="absmiddle">&nbsp;<%=wsd.getId()%>
  173.   <input name="id" type="hidden" value="<%=wsd.getId()%>">   </td>
  174.       <td style="PADDING-LEFT: 10px">&nbsp;&nbsp;
  175. <input name="name" value="<%=wsd.getName()%>" size="40">
  176. <input name="beginIndex" value="<%=wsd.getBeginIndex()%>" type=hidden>   </td>
  177.       <td><input name="curIndex" value="<%=wsd.getCurIndex()%>">
  178.         <input name="length" value="<%=wsd.getLength()%>" size="10" type="hidden"></td>
  179.       <td><input type=submit value=修改>&nbsp;&nbsp;
  180. <a href="javascript: if (confirm('您确定要删除吗?')) window.location.href='?action=del&id=<%=wsd.getId() + "&op=" + op + "&by=" + by + "&what=" + StrUtil.UrlEncode(what)%>'">删除</a>   </td>
  181.   </form>
  182. </tr>
  183. <%}%>
  184.   </tbody>
  185. </table>
  186. <table width="96%"  border="0" align="center" cellpadding="0" cellspacing="0">
  187.   <tr>
  188.     <td align="right">&nbsp;</td>
  189.   </tr>
  190.   <tr>
  191.     <td align="right"><%
  192. String querystr = "op=" + op + "&by=" + by + "&what=" + StrUtil.UrlEncode(what);
  193.     out.print(paginator.getCurPageBlock("?"+querystr));
  194. %></td>
  195.   </tr>
  196.   <tr>
  197.     <td align="right"><table width="381" border="0" align="center" class="singleboarder">
  198. <form action="?action=add" method=post>
  199.       <tr>
  200.         <td colspan="2" align="center" class="thead">添加序列</td>
  201.       </tr>
  202.       <tr>
  203.         <td width="65" align="center">序列名称</td>
  204.         <td width="302" align="left"><input name="name" value="">
  205.           <input name="beginIndex" id="beginIndex" value="1" type=hidden></td>
  206.       </tr>
  207.       
  208.       <tr>
  209.         <td align="center">当前索引</td>
  210.         <td align="left"><input name="curIndex" id="curIndex" value="1">
  211.           <input name="length" id="length" value="0" type="hidden"></td>
  212.       </tr>
  213.       
  214.       <tr>
  215.         <td colspan="2" align="center"><input type="submit" value=" 确  定 "></td>
  216.         </tr>
  217.       </form>
  218.     </table></td>
  219.   </tr>
  220. </table>
  221. </body>
  222. <script language="javascript">
  223. <!--
  224. //-->
  225. </script>
  226. </html>