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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.net.URLEncoder"%>
  3. <%@ page import = "java.util.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "cn.js.fan.web.*"%>
  6. <%@ page import = "com.redmoon.oa.archive.*"%>
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>用户档案查询</title>
  11. <link href="../common.css" rel="stylesheet" type="text/css">
  12. <style type="text/css">
  13. <!--
  14. .style2 {font-size: 14px}
  15. -->
  16. </style>
  17. </head>
  18. <body>
  19. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  20. <%
  21. if (!privilege.isUserPrivValid(request, "archive.query")) {
  22. out.print(StrUtil.Alert_Back(SkinUtil.LoadString(request, "pvg_invalid")));
  23. return;
  24. }
  25. %>
  26. <br>
  27. <form name="form1" method="post" action="archive_query_do.jsp?op=modifyTableCode">
  28.   <table width="95%" border="0">
  29.     <tr>
  30.       <td><table class="tableframe" cellSpacing="1" cellPadding="2" width="95%" align="center" border="0" bgcolor="#FFFFFF">
  31.         <tbody>
  32.           <tr>
  33.             <td colspan="2" noWrap class="right-title">修改查询范围</td>
  34.           </tr>
  35. <%
  36.    int id = ParamUtil.getInt(request, "id");
  37.    
  38.    ArchiveQueryDb aqd = new ArchiveQueryDb();
  39.    aqd = aqd.getArchiveQueryDb(id);
  40.    String table_full_code = aqd.getTableCode();
  41.    String[] tableFullCodeArr = table_full_code.split(",");
  42.    String[] tableCodeArr = null;
  43.    
  44.    String sql = ArchiveSQLBuilder.getArchiveTable(); 
  45.    TableInfoDb tid = new TableInfoDb();
  46.     
  47.    Vector vt = tid.list(sql);
  48.    Iterator ir = null;
  49.    ir = vt.iterator();
  50.    while (ir!=null && ir.hasNext()) {
  51.        tid = (TableInfoDb)ir.next();
  52.    int i = 0;
  53. %>      
  54.           <tr>
  55.             <td width="6%" noWrap><%=tid.getTableDescription()%></td>
  56.             <td><input type="checkbox" name="tableCode" value="<%=tid.getTableCode()%>"
  57.  <%
  58.   while(i < tableFullCodeArr.length){
  59.             tableCodeArr = tableFullCodeArr[i].split(" ");
  60.     if(tableCodeArr[0].equals(tid.getTableCode())){
  61.  %> 
  62. checked 
  63.  <%  
  64.     }
  65.     i++;
  66.               }
  67.  %>
  68.  >选择该表
  69. </td>
  70.           </tr>
  71. <%
  72.   }
  73. %>   
  74.         </tbody>
  75.       </table></td>
  76.     </tr>  
  77.     <tr>
  78.       <td align="center"><input value="保存查找范围" type="submit">
  79.         <input type="hidden" name="id" value="<%=id%>">&nbsp;&nbsp;    </td>
  80.     </tr>
  81.   </table>
  82. </form>
  83. </body>
  84. </html>