product_sell_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.sell";
  12. if (!privilege.isUserPrivValid(request, priv))
  13. {
  14. out.println(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  15. return;
  16. }
  17. String op = ParamUtil.get(request, "op");
  18. String formCode = "sales_product_sell";
  19. String querystr = "";
  20. FormDb fd = new FormDb();
  21. fd = fd.getFormDb(formCode);
  22. %>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  24. <html>
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  27. <title><%=fd.getName()%>列表</title>
  28. <link href="../common.css" rel="stylesheet" type="text/css">
  29. <%@ include file="../inc/nocache.jsp"%>
  30. <script src="<%=Global.getRootPath()%>/inc/flow_dispose_js.jsp"></script>
  31. <script src="<%=Global.getRootPath()%>/inc/flow_js.jsp"></script>
  32. </head>
  33. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  34. <%@ include file="product_sell_inc_menu_top.jsp"%>
  35. <%
  36. String sql = "select id from " + fd.getTableNameByForm();
  37. String query = ParamUtil.get(request, "query");
  38. if (!query.equals(""))
  39. sql = query;
  40. else
  41. if (op.equals("search")) {
  42. Iterator ir = fd.getFields().iterator();
  43. String cond = "";
  44. while (ir.hasNext()) {
  45. FormField ff = (FormField)ir.next();
  46. String value = ParamUtil.get(request, ff.getName());
  47. String name_cond = ParamUtil.get(request, ff.getName() + "_cond");
  48. if (ff.getType().equals(ff.TYPE_DATE) || ff.getType().equals(ff.TYPE_DATE_TIME)) {
  49. String fDate = ParamUtil.get(request, ff.getName() + "FromDate");
  50. String tDate = ParamUtil.get(request, ff.getName() + "ToDate");
  51. if (!fDate.equals("")) {
  52. if (cond.equals(""))
  53. cond += ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  54. else
  55. cond += " and " + ff.getName() + ">=" + StrUtil.sqlstr(fDate);
  56. }
  57. if (!tDate.equals("")) {
  58. if (cond.equals(""))
  59. cond += ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  60. else
  61. cond += " and " + ff.getName() + "<=" + StrUtil.sqlstr(tDate);
  62. }
  63. }
  64. else {
  65. if (name_cond.equals("0")) {
  66. if (!value.equals("")) {
  67. if (cond.equals(""))
  68. cond += ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  69. else
  70. cond += " and " + ff.getName() + " like " + StrUtil.sqlstr("%" + value + "%");
  71. }
  72. }
  73. else if (name_cond.equals("1")) {
  74. if (!value.equals("")) {
  75. if (cond.equals(""))
  76. cond += ff.getName() + "=" + StrUtil.sqlstr(value);
  77. else
  78. cond += " and " + ff.getName() + "=" + StrUtil.sqlstr(value);
  79. }
  80. }
  81. }
  82. }
  83. if (!cond.equals(""))
  84. sql = sql + " where " + cond;
  85. }
  86. querystr = "query=" + StrUtil.UrlEncode(sql);
  87. %>
  88. <br>
  89. <table width="494" border="0" align="center" cellpadding="0" cellspacing="0" class="main">
  90.   <tr> 
  91.     <td height="23" valign="middle" class="right-title">&nbsp;<%=fd.getName()%></td>
  92.   </tr>
  93.   <tr> 
  94.     <td valign="top" background="workplan/images/tab-b-back.gif">
  95. <%
  96. int pagesize = 10;
  97. Paginator paginator = new Paginator(request);
  98. int curpage = paginator.getCurPage();
  99. FormDAO fdao = new FormDAO();
  100. ListResult lr = fdao.listResult(formCode, sql, curpage, pagesize);
  101. int total = lr.getTotal();
  102. Vector v = lr.getResult();
  103.     Iterator ir = null;
  104. if (v!=null)
  105. ir = v.iterator();
  106. paginator.init(total, pagesize);
  107. // 设置当前页数和总页数
  108. int totalpages = paginator.getTotalPages();
  109. if (totalpages==0)
  110. {
  111. curpage = 1;
  112. totalpages = 1;
  113. }
  114. %>
  115. <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  116.         <tr> 
  117.           <td width="47">&nbsp;</td>
  118.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  119.         </tr>
  120.       </table> 
  121.       <table width="98%" border="0" align="center" cellpadding="2" cellspacing="1">
  122.         <tr align="center" bgcolor="#C4DAFF"> 
  123.           <td width="26%" bgcolor="#C4DAFF">产品名称</td>
  124.           <td width="20%" bgcolor="#C4DAFF">售出日期</td>
  125.           <td width="21%" bgcolor="#C4DAFF">客户名称</td>
  126.           <td width="16%" bgcolor="#C4DAFF">销售员</td>
  127.           <td width="17%" bgcolor="#C4DAFF">操作</td>
  128.         </tr>
  129.       <%
  130.    int i = 0;
  131. while (ir!=null && ir.hasNext()) {
  132. fdao = (FormDAO)ir.next();
  133. i++;
  134. int id = fdao.getId();
  135. %>
  136.         <tr align="center" bgcolor="#EEEEEE"> 
  137.           <td width="26%" bgcolor="#EEEEEE"> <a href="product_sell_show.jsp?id=<%=id%>&formCode=<%=formCode%>"><%=fdao.getFieldValue("product_name")%></a></td>
  138.           <td width="20%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("record_date")%></td>
  139.           <td width="21%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("customer_name")%></td>
  140.           <td width="16%" bgcolor="#EEEEEE"><%=fdao.getFieldValue("sales_man")%></td>
  141.           <td width="17%" bgcolor="#EEEEEE"><a href="product_sell_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>
  142.         </tr>
  143.       <%
  144. }
  145. %>
  146.       </table>
  147.       <br>
  148.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  149.         <tr> 
  150.           <td width="1%" height="23">&nbsp;</td>
  151.           <td height="23" valign="baseline"> 
  152.             <div align="right"> 
  153.             <%
  154. out.print(paginator.getCurPageBlock("?"+querystr));
  155. %>
  156.               &nbsp;</div></td>
  157.         </tr>
  158.       </table>
  159.     </td>
  160.   </tr>
  161.   <tr> 
  162.     <td height="9">&nbsp;</td>
  163.   </tr>
  164. </table>
  165. </body>
  166. </html>