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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8" %>
  2. <%@ page import="com.redmoon.oa.netdisk.*"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <%@ page import="cn.js.fan.web.*"%>
  5. <%@ page import="com.redmoon.oa.dept.*"%>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  10. <title>职位</title>
  11. <LINK href="../admin/default.css" type=text/css rel=stylesheet>
  12. <script>
  13. var oldDirCode = "";
  14. function selDirCode() {
  15. var code = form1.dirCode.options(form1.dirCode.selectedIndex).value;
  16. if (code=="<%=PublicLeaf.ROOTCODE%>") {
  17. alert("请选择相应的目录!");
  18. form1.dirCode.value = oldDirCode;
  19. return false;
  20. }
  21. oldDirCode = code;
  22. }
  23. function form1_onsubmit() {
  24. if (form1.dirCode.options(form1.dirCode.selectedIndex).value=="<%=PublicLeaf.ROOTCODE%>") {
  25. alert("请选择相应的目录!");
  26. return false;
  27. }
  28. }
  29. function openWinDepts() {
  30. var ret = showModalDialog('../dept_multi_sel.jsp',window.self,'dialogWidth:480px;dialogHeight:320px;status:no;help:no;')
  31. if (ret==null)
  32. return;
  33. form1.deptNames.value = "";
  34. form1.depts.value = "";
  35. for (var i=0; i<ret.length; i++) {
  36. if (form1.deptNames.value=="") {
  37. form1.depts.value += ret[i][0];
  38. form1.deptNames.value += ret[i][1];
  39. }
  40. else {
  41. form1.depts.value += "," + ret[i][0];
  42. form1.deptNames.value += "," + ret[i][1];
  43. }
  44. }
  45. if (form1.depts.value.indexOf("<%=DeptDb.ROOTCODE%>")!=-1) {
  46. form1.depts.value = "<%=DeptDb.ROOTCODE%>";
  47. form1.deptNames.value = "全部";
  48. }
  49. }
  50. function getDepts() {
  51. return form1.depts.value;
  52. }
  53. </script>
  54. </head>
  55. <body>
  56. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  57. <jsp:useBean id="docmanager" scope="page" class="com.redmoon.oa.netdisk.DocumentMgr"/>
  58. <%
  59. if (!privilege.isUserLogin(request)) {
  60. // out.print("对不起,请先登录!");
  61. // return;
  62. }
  63. int attId = ParamUtil.getInt(request, "attachId");
  64. Attachment am = new Attachment();
  65. am = am.getAttachment(attId);
  66. LeafPriv lp = new LeafPriv(am.getDirCode());
  67. if (privilege.isUserPrivValid(request, "admin")) {
  68. }
  69. else {
  70. boolean canManage = false;
  71. if (lp.canUserModify(privilege.getUser(request)))
  72. canManage = true;
  73. else {
  74. PublicLeafPriv plp = new PublicLeafPriv(am.getPublicShareDir());
  75. if (plp.canUserManage(privilege.getUser(request)))
  76. canManage = true;
  77. }
  78.     // 用户对该目录具有共享的权限
  79. if (!canManage) {
  80. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "pvg_invalid")));
  81. return;
  82. }
  83. }
  84. String op = ParamUtil.get(request, "op");
  85. if (op.equals("share")) {
  86. String publicShareDir = ParamUtil.get(request, "dirCode");
  87. String depts = ParamUtil.get(request, "depts");
  88. am.setPublicShareDepts(depts);
  89. am.setPublicShareDir(publicShareDir);
  90. boolean re = am.save();
  91. if (re) {
  92. if (!publicShareDir.equals(""))
  93. out.print(StrUtil.Alert("操作成功!"));
  94. else {
  95. Document doc = new Document();
  96. doc = doc.getDocument(am.getDocId());
  97. out.print(StrUtil.Alert_Redirect("取消发布成功!", "dir_list.jsp?dir_code=" + StrUtil.UrlEncode(doc.getDirCode()) + "&op=editarticle"));
  98. }
  99. }
  100. else
  101. out.print(StrUtil.Alert("操作失败!"));
  102. }
  103. // String[] arydepts = am.getPublicShareDepts().split(",");
  104. String[] arydepts = StrUtil.split(am.getPublicShareDepts(), ",");
  105.   String depts = "";
  106.   String deptNames = "";
  107.   int len = 0;
  108.   if (arydepts!=null) {
  109.    len = arydepts.length;
  110. DeptDb dd = new DeptDb();
  111.    for (int i=0; i<len; i++) {
  112. if (depts.equals("")) {
  113. depts = arydepts[i];
  114. dd = dd.getDeptDb(arydepts[i]);
  115. deptNames = dd.getName();
  116. }
  117. else {
  118. depts += "," + arydepts[i];
  119. dd = dd.getDeptDb(arydepts[i]);
  120. deptNames += "," + dd.getName();
  121. }
  122. }
  123.   }
  124. %>
  125. <br>
  126. <table width="52%" border="0" align="center" cellpadding="0" cellspacing="0" class="frame_gray">
  127. <form name=form1 action="?op=share" method=post onsubmit="return form1_onsubmit()">
  128.   <tr>
  129.     <td height="24" colspan="2" bgcolor="#EAE9E6"><strong>&nbsp;将 <%=am.getName()%> 发布至全局共享目录</strong></td>
  130.     </tr>
  131.   
  132.   <tr>
  133.     <td width="16%" height="24" align="center">目录名称</td>
  134.     <td width="84%"><select name=dirCode onChange="selDirCode()">
  135.         <%
  136. PublicLeaf rootLeaf = new PublicLeaf();
  137. rootLeaf = rootLeaf.getLeaf(rootLeaf.ROOTCODE);
  138. PublicDirectoryView pdv = new PublicDirectoryView(rootLeaf);
  139. pdv.ShowDirectoryAsOptionsWithCode(out, rootLeaf, rootLeaf.getLayer());
  140. %>
  141.       </select>
  142. <%
  143. String publicShareDir = StrUtil.getNullString(am.getPublicShareDir());
  144. if (!publicShareDir.equals("")) {
  145. %>
  146.   <script>
  147.   form1.dirCode.value = "<%=am.getPublicShareDir()%>";
  148.   </script>
  149. <%}%>
  150.       &nbsp;&nbsp;&nbsp;&nbsp;
  151.   <input type="hidden" name="attachId" value="<%=attId%>"></td>
  152.   </tr>
  153.   <tr>
  154.     <td height="24" align="center">共享部门</td>
  155.     <td><textarea name="deptNames" cols="45" rows="3" readOnly wrap="yes" id="deptName"><%=deptNames%></textarea>
  156.           <span class="TableData">
  157.           <input type="hidden" name="depts" value="<%=depts%>">
  158.           &nbsp;
  159.           <input class="SmallButton" title="添加部门" onClick="openWinDepts()" type="button" value="添 加" name="button">
  160. &nbsp;
  161. <input class="SmallButton" title="清空部门" onClick="form1.deptNames.value='';form1.depts.value=''" type="button" value="清 空" name="button">
  162. <br>
  163. (&nbsp;共享部门为空表示所有部门都可以共享 )          </span></td>
  164.   </tr>
  165.   <tr>
  166.     <td height="24">&nbsp;</td>
  167.     <td height="35"><input type="submit" name="Submit" value=" 确  定 ">
  168. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      &nbsp;
  169.       <input name="button2" type="button" onClick="form1.dirCode.value='';form1.submit()" value="取消发布"></td>
  170.   </tr>
  171. </form>  
  172. </table>
  173. </body>
  174. </html>