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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import = "com.redmoon.oa.archive.*"%>
  3. <%@ page import = "cn.js.fan.util.*"%>
  4. <%@ page import = "cn.js.fan.web.*"%>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <title>人事档案管理</title>
  8. </head>
  9. <body>
  10. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  11. <%
  12. if (!privilege.isUserPrivValid(request, "archive.query")) {
  13. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "pvg_invalid")));
  14. return;
  15. }
  16. ArchiveQueryMgr aqm = new ArchiveQueryMgr();
  17. boolean re = false;
  18. String op = ParamUtil.get(request, "op");
  19. if (op.equals("add")) {
  20. try {
  21. re = aqm.create(request);
  22. }
  23. catch (ErrMsgException e) {
  24. out.print(StrUtil.Alert_Back(e.getMessage()));
  25. }
  26. if (re) {
  27. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.module.archive", "success_add_query"),"archive_query_save_list.jsp"));
  28. }
  29. }
  30. if (op.equals("modify")) {
  31. try {
  32. re = aqm.modify(request);
  33. }
  34. catch (ErrMsgException e) {
  35. out.print(StrUtil.Alert_Back(e.getMessage()));
  36. }
  37. if (re) {
  38. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_modify_query")));
  39. }
  40. }
  41.     if (op.equals("modifyDeptCode")) {
  42. try {
  43. re = aqm.modifyDeptCode(request);
  44. }
  45. catch (ErrMsgException e) {
  46. out.print(StrUtil.Alert_Back(e.getMessage()));
  47. }
  48. if (re) {
  49. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_modify_query")));
  50. }
  51. }
  52.     if (op.equals("modifyTableCode")) {
  53. try {
  54. re = aqm.modifyTableCode(request);
  55. }
  56. catch (ErrMsgException e) {
  57. out.print(StrUtil.Alert_Back(e.getMessage()));
  58. }
  59. if (re) {
  60. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_modify_query")));
  61. }
  62. }
  63. if (op.equals("modifyShowFieldCode")) {
  64. try {
  65. re = aqm.modifyShowFieldCode(request);
  66. }
  67. catch (ErrMsgException e) {
  68. out.print(StrUtil.Alert_Back(e.getMessage()));
  69. }
  70. if (re) {
  71. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_modify_query")));
  72. }
  73. }
  74.     if (op.equals("modifyConditionFieldCode")) {
  75. try {
  76. re = aqm.modifyConditionFieldCode(request);
  77. }
  78. catch (ErrMsgException e) {
  79. out.print(StrUtil.Alert_Back(e.getMessage()));
  80. }
  81. if (re) {
  82. out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.module.archive", "success_modify_query"), "archive_query_save_list.jsp"));
  83. }
  84. }
  85. if (op.equals("modifyOrderFieldCode")) {
  86. try {
  87. re = aqm.modifyOrderFieldCode(request);
  88. }
  89. catch (ErrMsgException e) {
  90. out.print(StrUtil.Alert_Back(e.getMessage()));
  91. }
  92. if (re) {
  93. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_modify_query")));
  94. }
  95. }
  96. if (op.equals("del")) {
  97. try {
  98. re = aqm.del(request);
  99. }
  100. catch (ErrMsgException e) {
  101. out.print(StrUtil.Alert_Back(e.getMessage()));
  102. }
  103. if (re) {
  104. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_del_query")));
  105. }
  106. }
  107. if (op.equals("modifyUsers")){
  108.     ArchivePrivilegeMgr apm = new ArchivePrivilegeMgr();
  109. try {
  110. re = apm.create(request);
  111. }
  112. catch (ErrMsgException e) {
  113. out.print(StrUtil.Alert_Back(e.getMessage()));
  114. }
  115. if (re) {
  116. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_add_user")));
  117. }
  118. }
  119. %>
  120. </body>
  121. </html>