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

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.web.*"%>
  5. <%@ page import = "cn.js.fan.util.*"%>
  6. <%@ page import = "com.redmoon.oa.visual.*"%>
  7. <%@ page import = "com.redmoon.oa.flow.FormDb"%>
  8. <%@ page import = "com.redmoon.oa.flow.FormField"%>
  9. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  10. <%
  11. String priv = "sales.provider";
  12. if (!privilege.isUserPrivValid(request, priv) && !privilege.isUserPrivValid(request, "sales")) {
  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_provider_info";
  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. <%@ include file="../inc/nocache.jsp"%>
  29. <script src="<%=Global.getRootPath()%>/inc/flow_dispose_js.jsp"></script>
  30. <script src="<%=Global.getRootPath()%>/inc/flow_js.jsp"></script>
  31. </head>
  32. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  33. <%@ include file="provider_info_inc_menu_top.jsp"%>
  34. <%
  35. String sql = "select id from " + fd.getTableNameByForm();
  36. String query = ParamUtil.get(request, "query");
  37. if (!query.equals(""))
  38. sql = query;
  39. else
  40. if (op.equals("search")) {
  41. Iterator ir = fd.getFields().iterator();
  42. String cond = "";
  43. while (ir.hasNext()) {
  44. FormField ff = (FormField)ir.next();
  45. String value = ParamUtil.get(request, ff.getName());
  46. String name_cond = ParamUtil.get(request, ff.getName() + "_cond");
  47. if (ff.getType().equals(ff.TYPE_DATE) || ff.getType().equals(ff.TYPE_DATE_TIME)) {
  48. String fDate = ParamUtil.get(request, ff.getName() + "FromDate");
  49. String tDate = ParamUtil.get(request, ff.getName() + "ToDate");
  50. if (!fDate.equals("")) {
  51. if (cond.equals(""))
  52. cond += ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  53. else
  54. cond += " and " + ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  55. }
  56. if (!tDate.equals("")) {
  57. if (cond.equals(""))
  58. cond += ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  59. else
  60. cond += " and " + ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  61. }
  62. }
  63. else {
  64. if (name_cond.equals("0")) {
  65. if (!value.equals("")) {
  66. if (cond.equals(""))
  67. cond += ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  68. else
  69. cond += " and " + ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  70. }
  71. }
  72. else if (name_cond.equals("1")) {
  73. if (!value.equals("")) {
  74. if (cond.equals(""))
  75. cond += ff.getName() + "=" + StrUtil.sqlstr(value);
  76. else
  77. cond += " and " + ff.getName() + "=" + StrUtil.sqlstr(value);
  78. }
  79. }
  80. }
  81. }
  82. if (!cond.equals(""))
  83. sql = sql + " where " + cond;
  84. }
  85. querystr = "query=" + StrUtil.UrlEncode(sql);
  86. %>
  87. <br>
  88. <table width="494" border="0" align="center" cellpadding="0" cellspacing="0" class="main">
  89.   <tr> 
  90.     <td height="23" valign="middle" class="right-title">&nbsp;<%=fd.getName()%></td>
  91.   </tr>
  92.   <tr> 
  93.     <td valign="top" background="workplan/images/tab-b-back.gif">
  94. <%
  95. int pagesize = 10;
  96. Paginator paginator = new Paginator(request);
  97. int curpage = paginator.getCurPage();
  98. FormDAO fdao = new FormDAO();
  99. ListResult lr = fdao.listResult(formCode, sql, curpage, pagesize);
  100. int total = lr.getTotal();
  101. Vector v = lr.getResult();
  102.     Iterator ir = null;
  103. if (v!=null)
  104. ir = v.iterator();
  105. paginator.init(total, pagesize);
  106. // 设置当前页数和总页数
  107. int totalpages = paginator.getTotalPages();
  108. if (totalpages==0)
  109. {
  110. curpage = 1;
  111. totalpages = 1;
  112. }
  113. %>
  114. <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  115.         <tr> 
  116.           <td width="47">&nbsp;</td>
  117.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  118.         </tr>
  119.       </table> 
  120.       <table width="98%" border="0" align="center" cellpadding="2" cellspacing="1">
  121.         <tr align="center" bgcolor="#C4DAFF"> 
  122.           <td width="26%" bgcolor="#C4DAFF">供应商名称</td>
  123.           <td width="20%" bgcolor="#C4DAFF">电话</td>
  124.           <td width="21%" bgcolor="#C4DAFF">网址</td>
  125.           <td width="16%" bgcolor="#C4DAFF">电子邮件</td>
  126.           <td width="17%" bgcolor="#C4DAFF">操作</td>
  127.         </tr>
  128.       <%
  129.    int i = 0;
  130. while (ir!=null && ir.hasNext()) {
  131. fdao = (FormDAO)ir.next();
  132. i++;
  133. int id = fdao.getId();
  134. %>
  135.         <tr align="center" bgcolor="#EEEEEE"> 
  136.           <td width="26%" bgcolor="#EEEEEE"> <a href="provider_info_show.jsp?id=<%=id%>&formCode=<%=formCode%>"><%=fdao.getFieldValue("provide_name")%></a></td>
  137.           <td width="20%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("tel")%></td>
  138.           <td width="21%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("web")%></td>
  139.           <td width="16%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("email")%></td>
  140.           <td width="17%" bgcolor="#EEEEEE"><a href="provider_info_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>&nbsp;&nbsp;   </td>
  141.         </tr>
  142.       <%
  143. }
  144. %>
  145.       </table>
  146.       <br>
  147.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  148.         <tr> 
  149.           <td width="1%" height="23">&nbsp;</td>
  150.           <td height="23" valign="baseline"> 
  151.             <div align="right"> 
  152.             <%
  153. out.print(paginator.getCurPageBlock("?"+querystr));
  154. %>
  155.               &nbsp;</div></td>
  156.         </tr>
  157.       </table>
  158.     </td>
  159.   </tr>
  160.   <tr> 
  161.     <td height="9">&nbsp;</td>
  162.   </tr>
  163. </table>
  164. </body>
  165. </html>