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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %><%@ page import="com.redmoon.oa.flow.*"%><%@ page import="cn.js.fan.util.*"%><jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/><jsp:useBean id="docmanager" scope="page" class="com.redmoon.oa.flow.DocumentMgr"/><%
  2. if (!privilege.isUserLogin(request)) {
  3. // out.print("对不起,请先登录!");
  4. // return;
  5. }
  6. String op = ParamUtil.get(request, "op");
  7. if (op.equals("changeattachname")) {
  8. int doc_id = ParamUtil.getInt(request, "doc_id");
  9. int attach_id = ParamUtil.getInt(request, "attach_id");
  10. int page_num = ParamUtil.getInt(request, "page_num");
  11. String newname = ParamUtil.get(request, "newname");
  12. Document doc = new Document();
  13. doc = doc.getDocument(doc_id);
  14. DocContent dc = doc.getDocContent(page_num);
  15. boolean re = dc.updateAttachmentName(attach_id, newname);
  16. if (re) {
  17. out.print(StrUtil.Alert_Back("修改成功!"));
  18. %>
  19. <script>
  20. // window.parent.location.reload(true);
  21. </script>
  22. <%
  23. }
  24. else
  25. out.print(StrUtil.Alert_Back("修改失败!"));
  26. return;
  27. }
  28. if (op.equals("delAttach")) {
  29. int doc_id = ParamUtil.getInt(request, "doc_id");
  30. int attach_id = ParamUtil.getInt(request, "attach_id");
  31. int page_num = ParamUtil.getInt(request, "page_num");
  32. Document doc = new Document();
  33. doc = doc.getDocument(doc_id);
  34. DocContent dc = doc.getDocContent(page_num);
  35. boolean re = dc.delAttachment(attach_id);
  36. if (re) {
  37. %>
  38. <script>
  39. if (window.confirm("删除成功!点击确定可刷新页面"))
  40. window.parent.location.reload(true);
  41. </script>
  42. <%
  43. }
  44. else
  45. out.print(StrUtil.Alert("删除失败!"));
  46. return;
  47. }
  48. boolean re = false;
  49. try {
  50. re = docmanager.Operate(application, request, privilege);
  51. }
  52. catch(ErrMsgException e) {
  53. out.print(e.getMessage());
  54. }
  55. if (re) {
  56. out.print("操作成功!");
  57. }
  58. %>