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

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