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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.util.*"%>
  4. <%@ page import = "cn.js.fan.web.*"%>
  5. <%@ page import = "com.redmoon.oa.dept.*"%>
  6. <%@ page import = "com.redmoon.oa.person.*"%>
  7. <%@ page import = "com.redmoon.oa.archive.*"%>
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  11. <title>用户档案查询</title>
  12. <link href="../common.css" rel="stylesheet" type="text/css">
  13. <%@ include file="../inc/nocache.jsp"%>
  14. <style type="text/css">
  15. <!--
  16. .style2 {font-size: 14px}
  17. -->
  18. </style>
  19. </head>
  20. <body>
  21. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  22. <%
  23. if (!privilege.isUserPrivValid(request, "archive.query")) {
  24. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "pvg_invalid")));
  25. return;
  26. }
  27. %>
  28. <br>
  29. <form name="form1" method="post" action="archive_query_confine.jsp">
  30.   <table width="95%" border="0">
  31.     <tr>
  32.       <td><table class="tableframe" cellSpacing="1" cellPadding="2" width="95%" align="center" border="0" bgcolor="#FFFFFF">
  33.         <tbody>
  34.           <tr>
  35.             <td colspan="2" noWrap class="right-title">选择查询部门</td>
  36.           </tr>
  37. <%
  38. String userName = privilege.getUser(request);
  39. UserDb ud = new UserDb();
  40. ud = ud.getUserDb(userName);
  41. String[] deptCodeArr = ud.getAdminDepts();
  42. DeptDb dd = new DeptDb();
  43. int len = 0;
  44. if (deptCodeArr!=null)
  45. len = deptCodeArr.length;    
  46. for (int i=0; i<len; i++) {
  47. %>      
  48.           <tr>
  49.             <td width="6%" noWrap><%=dd.getDeptDb(deptCodeArr[i]).getName()%></td>
  50.             <td><input type="checkbox" name="deptCode" value="<%=deptCodeArr[i]%>" checked>选择该部门
  51. </td>
  52.           </tr>
  53. <%
  54. }
  55. %>   
  56.         </tbody>
  57.       </table></td>
  58.     </tr>  
  59.     <tr>
  60.       <td align="center"><input value="下一步 &#8594; 选择查询范围" type="submit">&nbsp;&nbsp;</td>
  61.     </tr>
  62.   </table>
  63. </form>
  64. </body>
  65. </html>