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

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.db.*"%>
  4. <%@ page import = "cn.js.fan.util.*"%>
  5. <%@ page import = "com.redmoon.oa.visual.*"%>
  6. <%@ page import = "com.redmoon.oa.flow.FormDb"%>
  7. <%@ page import = "com.redmoon.oa.flow.FormField"%>
  8. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  9. <%
  10. String priv = "read";
  11. if (!privilege.isUserPrivValid(request, priv))
  12. {
  13. // out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  14. // return;
  15. }
  16. String op = ParamUtil.get(request, "op");
  17. String formCode = "sales_customer";
  18. String querystr = "";
  19. FormDb fd = new FormDb();
  20. fd = fd.getFormDb(formCode);
  21. %>
  22. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  23. <html>
  24. <head>
  25. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  26. <title><%=fd.getName()%>列表</title>
  27. <link href="../common.css" rel="stylesheet" type="text/css">
  28. <script>
  29. function selCustomer(customer) {
  30. window.opener.setIntpuObjValue(customer);
  31. window.close();
  32. }
  33. </script>
  34. <%@ include file="../inc/nocache.jsp"%>
  35. </head>
  36. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  37. <%
  38. String sql = "select id from " + fd.getTableNameByForm();
  39. String query = ParamUtil.get(request, "query");
  40. if (!query.equals(""))
  41. sql = query;
  42. else
  43. if (op.equals("search")) {
  44. Iterator ir = fd.getFields().iterator();
  45. String cond = "sales_person=" + StrUtil.sqlstr(privilege.getUser(request));
  46. while (ir.hasNext()) {
  47. FormField ff = (FormField)ir.next();
  48. String value = ParamUtil.get(request, ff.getName());
  49. String name_cond = ParamUtil.get(request, ff.getName() + "_cond");
  50. if (ff.getType().equals(ff.TYPE_DATE) || ff.getType().equals(ff.TYPE_DATE_TIME)) {
  51. String fDate = ParamUtil.get(request, ff.getName() + "FromDate");
  52. String tDate = ParamUtil.get(request, ff.getName() + "ToDate");
  53. if (!fDate.equals("")) {
  54. if (cond.equals(""))
  55. cond += ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  56. else
  57. cond += " and " + ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  58. }
  59. if (!tDate.equals("")) {
  60. if (cond.equals(""))
  61. cond += ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  62. else
  63. cond += " and " + ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  64. }
  65. }
  66. else {
  67. if (name_cond.equals("0")) {
  68. if (!value.equals("")) {
  69. if (cond.equals(""))
  70. cond += ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  71. else
  72. cond += " and " + ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  73. }
  74. }
  75. else if (name_cond.equals("1")) {
  76. if (!value.equals("")) {
  77. if (cond.equals(""))
  78. cond += ff.getName() + "=" + StrUtil.sqlstr(value);
  79. else
  80. cond += " and " + ff.getName() + "=" + StrUtil.sqlstr(value);
  81. }
  82. }
  83. }
  84. }
  85. if (!cond.equals(""))
  86. sql = sql + " where " + cond;
  87.     querystr = "query=" + sql;
  88. }
  89. else {
  90. sql += " where sales_person=" + StrUtil.sqlstr(privilege.getUser(request));
  91. }
  92. %>
  93. <table width="494" border="0" align="center" cellpadding="0" cellspacing="0" class="main">
  94.   <tr> 
  95.     <td height="23" valign="middle" class="right-title">&nbsp;选择<%=fd.getName()%></td>
  96.   </tr>
  97.   <tr> 
  98.     <td valign="top" background="workplan/images/tab-b-back.gif">
  99. <%
  100. int pagesize = 10;
  101. Paginator paginator = new Paginator(request);
  102. int curpage = paginator.getCurPage();
  103. FormDAO fdao = new FormDAO();
  104. ListResult lr = fdao.listResult(formCode, sql, curpage, pagesize);
  105. int total = lr.getTotal();
  106. Vector v = lr.getResult();
  107.     Iterator ir = null;
  108. if (v!=null)
  109. ir = v.iterator();
  110. paginator.init(total, pagesize);
  111. // 设置当前页数和总页数
  112. int totalpages = paginator.getTotalPages();
  113. if (totalpages==0)
  114. {
  115. curpage = 1;
  116. totalpages = 1;
  117. }
  118. %>
  119. <table width="67%" border="0" align="center" cellSpacing="1" class="tableframe">
  120.   <form id="form2" name="form2" action="?op=search" method="post">
  121.     <tbody>
  122.       <tr>
  123.         <td noWrap colSpan="3"><table width="100%" border="0" align="center" cellPadding="2" cellSpacing="0">
  124.           <tbody>
  125.             <tr>
  126.               <td colSpan="3" bgcolor="#C4DAFF"><b>查询</b></td>
  127.             </tr>
  128.             <tr>
  129.               <td width="29%">客户名称:</td>
  130.               <td noWrap width="19%"><select name="customer_cond">
  131.                 <option value="1">等于</option>
  132.                 <option value="0" selected>包含</option>
  133.               </select></td>
  134.               <td width="52%"><input name="customer" size="20"></td>
  135.             </tr>
  136.             <tr>
  137.               <td width="29%">电话:</td>
  138.               <td noWrap width="19%"><select name="tel_cond">
  139.                 <option value="1">等于</option>
  140.                 <option value="0" selected>包含</option>
  141.               </select></td>
  142.               <td width="52%"><input name="tel" size="20"></td>
  143.             </tr>
  144.             <tr>
  145.               <td width="29%">网址:</td>
  146.               <td noWrap width="19%"><select name="web_cond">
  147.                 <option value="1">等于</option>
  148.                 <option value="0" selected>包含</option>
  149.               </select></td>
  150.               <td width="52%"><input name="web" size="20"></td>
  151.             </tr>
  152.             <tr>
  153.               <td width="29%">电子邮件:</td>
  154.               <td noWrap width="19%"><select name="email_cond">
  155.                 <option value="1">等于</option>
  156.                 <option value="0" selected>包含</option>
  157.               </select></td>
  158.               <td width="52%"><input name="email" size="20"></td>
  159.             </tr>
  160.           </tbody>
  161.         </table></td>
  162.       </tr>
  163.       <tr align="middle">
  164.         <td noWrap align="center" colSpan="3" height="30"><input class="BigButton"  type="submit" value="查  询" name="submit">
  165.           &nbsp;&nbsp;&nbsp;&nbsp;</td>
  166.       </tr>
  167.     </tbody>
  168.   </form>
  169. </table>
  170. <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  171.         <tr> 
  172.           <td width="47">&nbsp;</td>
  173.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  174.         </tr>
  175.       </table> 
  176.       <table width="98%" border="0" align="center" cellpadding="2" cellspacing="1">
  177.         <tr align="center" bgcolor="#C4DAFF"> 
  178.           <td width="26%" bgcolor="#C4DAFF">客户名称</td>
  179.           <td width="20%" bgcolor="#C4DAFF">电话</td>
  180.           <td width="17%" bgcolor="#C4DAFF">操作</td>
  181.         </tr>
  182.       <%
  183.    int i = 0;
  184. while (ir!=null && ir.hasNext()) {
  185. fdao = (FormDAO)ir.next();
  186. i++;
  187. int id = fdao.getId();
  188. %>
  189.         <tr align="center" bgcolor="#EEEEEE"> 
  190.           <td width="26%" bgcolor="#EEEEEE"> <a href="customer_show.jsp?id=<%=id%>&formCode=<%=formCode%>"><%=fdao.getFieldValue("customer")%></a></td>
  191.           <td width="20%" bgcolor="#EEEEEE"><a href=../visual_show.jsp?id=<%=id%>&formCode=<%=formCode%>><%=fdao.getFieldValue("tel")%></a></td>
  192.           <td width="17%" bgcolor="#EEEEEE"><a href="javascript:selCustomer('<%=fdao.getFieldValue("customer")%>')">选择</a>&nbsp;&nbsp;&nbsp;&nbsp;   </td>
  193.         </tr>
  194.       <%
  195. }
  196. %>
  197.       </table>
  198.       <br>
  199.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  200.         <tr> 
  201.           <td width="1%" height="23">&nbsp;</td>
  202.           <td height="23" valign="baseline"> 
  203.             <div align="right"> 
  204.             <%
  205. out.print(paginator.getCurPageBlock("?"+querystr));
  206. %>
  207.               &nbsp;</div></td>
  208.         </tr>
  209.       </table>    </td>
  210.   </tr>
  211. </table>
  212. </body>
  213. </html>