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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "java.util.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "com.redmoon.oa.flow.*"%>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <title>修改流程1</title>
  11. <link href="common.css" rel="stylesheet" type="text/css">
  12. <%@ include file="inc/nocache.jsp"%>
  13. <style type="text/css">
  14. <!--
  15. .style2 {font-size: 14px}
  16. -->
  17. </style>
  18. </head>
  19. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  20. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  21. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  22. <%
  23. String priv="read";
  24. if (!privilege.isUserPrivValid(request,priv))
  25. {
  26. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  27. return;
  28. }
  29. try {
  30. int flow_id = ParamUtil.getInt(request, "flow_id");
  31. WorkflowMgr wm = new WorkflowMgr();
  32. WorkflowDb wf = wm.getWorkflowDb(flow_id);
  33. wf.del();
  34. out.print(StrUtil.Alert_Redirect("删除完毕!", "flow_list_doingorreturn.jsp"));
  35. }
  36. catch (ErrMsgException e) {
  37. out.print(fchar.Alert_Back(e.getMessage()));
  38. }
  39. %>
  40. </body>
  41. </html>