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

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. <jsp:useBean id="archivePrivilege" scope="page" class="com.redmoon.oa.archive.ArchivePrivilege"/>
  12. <%
  13. String userName = ParamUtil.get(request, "userName");
  14. if (!privilege.isUserPrivValid(request, "archive.study")||!archivePrivilege.canAdminUser(request,userName)) {
  15. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "pvg_invalid")));
  16. return;
  17. }
  18. UserStudyMgr usm = new UserStudyMgr();
  19. boolean re = false;
  20. String op = ParamUtil.get(request, "op");
  21. if (op.equals("add")) {
  22. try {
  23. re = usm.create(request);
  24. }
  25. catch (ErrMsgException e) {
  26. out.print(StrUtil.Alert_Back(e.getMessage()));
  27. }
  28. if (re) {
  29.     out.print(StrUtil.Alert_Redirect(SkinUtil.LoadString(request,"res.module.archive", "success_add_userstudy"),"archive_study_list.jsp?userName=" + userName));
  30. }
  31. }
  32. if (op.equals("modify")) {
  33. try {
  34. re = usm.modify(request);
  35. }
  36. catch (ErrMsgException e) {
  37. out.print(StrUtil.Alert_Back(e.getMessage()));
  38. }
  39. if (re) {
  40. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_modify_userstudy")));
  41. }
  42. }
  43. if (op.equals("del")) {
  44. try {
  45. re = usm.del(request);
  46. }
  47. catch (ErrMsgException e) {
  48. out.print(StrUtil.Alert_Back(e.getMessage()));
  49. }
  50. if (re) {
  51. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request,"res.module.archive", "success_del_userstudy")));
  52. }
  53. }
  54. %>
  55. </body>
  56. </html>