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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "cn.js.fan.util.*"%>
  4. <%@ page import = "java.util.*"%>
  5. <%@ page import = "com.redmoon.oa.flow.*"%>
  6. <%
  7. String isFlow = ParamUtil.get(request, "isFlow");
  8. %>
  9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <title>表单管理</title>
  14. <link href="../common.css" rel="stylesheet" type="text/css">
  15. <%@ include file="../inc/nocache.jsp"%>
  16. <script language="JavaScript" type="text/JavaScript">
  17. <!--
  18. function MM_preloadImages() { //v3.0
  19.   var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
  20.     var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
  21.     if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
  22. }
  23. function presskey(eventobject)
  24. {
  25. if(event.ctrlKey && window.event.keyCode==13)
  26. {
  27. <%if (isFlow.equals("")) {%>
  28. window.location.href="?isFlow=0";
  29. <%}else{%>
  30. window.location.href="?";
  31. <%}%>
  32. }
  33. }
  34. document.onkeydown = presskey;
  35. //-->
  36. </script>
  37. <style type="text/css">
  38. <!--
  39. .style2 {font-size: 14px}
  40. .STYLE3 {color: #FFFFFF}
  41. -->
  42. </style>
  43. </head>
  44. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  45. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  46. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  47. <%
  48. if (!privilege.isUserPrivValid(request, "admin")) {
  49.     out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  50. return;
  51. }
  52. String op = ParamUtil.get(request, "op");
  53. if (op.equals("del")) {
  54. FormMgr ftm = new FormMgr();
  55. boolean re = false;
  56. try {
  57. re = ftm.del(request);
  58. if (re) {
  59. out.print(StrUtil.Alert("删除成功!"));
  60. }
  61. else {
  62. out.print(StrUtil.Alert("删除失败!"));
  63. }
  64. }
  65. catch (ErrMsgException e) {
  66. out.print(StrUtil.Alert(e.getMessage()));
  67. }
  68. }
  69. String flowTypeCode = ParamUtil.get(request, "flowTypeCode");
  70. String flowTypeName = "";
  71. if (!flowTypeCode.equals("")) {
  72. Leaf flf = new Leaf();
  73. flf = flf.getLeaf(flowTypeCode);
  74. flowTypeName = flf.getName();
  75. LeafPriv lp = new LeafPriv(flowTypeCode);
  76. if (!(lp.canUserSee(privilege.getUser(request)))) {
  77. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  78. return;
  79. }
  80. }
  81. %>
  82. <table width="98%" height="89" border="0" align="center" cellpadding="0" cellspacing="0" class="tableframe">
  83.   <tr> 
  84.     <td width="100%" height="23" class="right-title">&nbsp;&nbsp; 
  85. <%
  86. if (isFlow.equals("0"))
  87. out.print("模块");
  88. else
  89. out.print(flowTypeName);
  90. %>表单管理</td>
  91.   </tr>
  92.   <tr> 
  93.     <td valign="top">
  94. <table width="100%"  border="0" cellspacing="0" cellpadding="0">
  95.   <tr>
  96.         <td height="28" align="center" bgcolor="#E7E7E7"><a href="form_add.jsp?flowTypeCode=<%=StrUtil.UrlEncode(flowTypeCode)%>">增加表单</a></td>
  97.     </tr>
  98. <form action="?" method=post>
  99.       <tr>
  100.         <td height="100" align="center" bgcolor="#E7E7E7" class="p14"><table width="93%" cellpadding="0" cellspacing="1">
  101.           <tr>
  102.             <td width="12%" height="25" align="center" bgcolor="#5286BD" ><span class="STYLE3">编码</span></td>
  103.             <td width="28%" height="25" align="center" bgcolor="#5286BD" ><span class="STYLE3">名称</span></td>
  104.             <td width="24%" align="center" bgcolor="#5286BD" class="STYLE3" >表格名称</td>
  105.             <td width="22%" align="center" bgcolor="#5286BD" class="STYLE3" >流程类型</td>
  106.             <td width="14%" height="25" align="center" bgcolor="#5286BD" ><span class="STYLE3">操作</span></td>
  107.           </tr>
  108.         </table>
  109. <%
  110. FormDb ftd = new FormDb();
  111. String sql = "";
  112. if (isFlow.equals("0"))
  113. sql = "select code from " + ftd.getTableName() + " where isFlow=0 order by orders asc";
  114. else {
  115. if (!flowTypeCode.equals(""))
  116. sql = "select code from " + ftd.getTableName() + " where flowTypeCode=" + StrUtil.sqlstr(flowTypeCode) + " and isFlow=1 order by orders asc";
  117. else
  118. sql = "select code from " + ftd.getTableName() + " where isFlow=1 order by orders asc";
  119. }
  120. Iterator ir = ftd.list(sql).iterator();
  121. Directory dir = new Directory();
  122. while (ir.hasNext()) {
  123. ftd = (FormDb) ir.next();
  124. %>
  125. <table width="93%"  border="0" cellpadding="5" cellspacing="1" class="p14">
  126.             <tr>
  127.               <td width="12%" bgcolor="#FFFFFF" ><%=ftd.getCode()%>                </td>
  128.               <td width="28%" bgcolor="#FFFFFF" ><%=ftd.getName()%></td>
  129.               <td width="24%" bgcolor="#FFFFFF" ><%=ftd.getTableNameByForm()%></td>
  130.               <td width="22%" bgcolor="#FFFFFF" >
  131.   <%
  132.   Leaf lf = dir.getLeaf(ftd.getFlowTypeCode());
  133.   if (lf!=null)
  134.    out.print(lf.getName());
  135.   %>   </td>
  136.               <td width="14%" align="center" bgcolor="#FFFFFF" >
  137.   <%if (!ftd.isSystem() || ftd.isSystem()) {%>
  138.   <a href="form_edit.jsp?code=<%=ftd.getCode()%>">修改</a>
  139.   &nbsp;&nbsp;<a href="#" onClick="if (window.confirm('您确定要删除<%=ftd.getName()%>类型吗?')) window.location.href='form_m.jsp?op=del&code=<%=StrUtil.UrlEncode(ftd.getCode())%>'">删除</a>
  140.   <%}%>   </td>
  141.             </tr>
  142.          </table>
  143.  <%}%>
  144.           <br>          </td>
  145.       </tr></form>
  146.     </table></td>
  147.   </tr>
  148. </table>
  149. <br>
  150. <br>
  151. </body>
  152. </html>