order.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.util.*"%>
  5. <%@ page import="com.redmoon.forum.plugin.auction.*"%>
  6. <%@ page import="com.redmoon.forum.plugin.*"%>
  7. <jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
  8. <html><head>
  9. <meta http-equiv="pragma" content="no-cache">
  10. <LINK href="../manager/default.css" type=text/css rel=stylesheet>
  11. <meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
  12. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  13. <title>我的订单列表</title>
  14. <script language="JavaScript">
  15. <!--
  16. //-->
  17. </script>
  18. <body topmargin='0' leftmargin='0'>
  19. <jsp:useBean id="privilege" scope="page" class="cn.js.fan.module.pvg.Privilege"/>
  20. <jsp:useBean id="dir" scope="page" class="com.redmoon.forum.plugin.auction.Directory"/>
  21. <%
  22. if (!privilege.isUserPrivValid(request, "auction"))
  23. {
  24. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  25. return;
  26. }
  27. %>
  28. <table width='100%' cellpadding='0' cellspacing='0' >
  29.   <tr>
  30.     <td class="head">
  31. 查看订单</td>
  32.   </tr>
  33. </table>
  34. <br>
  35. <%
  36. int pagesize = 10;
  37. Paginator paginator = new Paginator(request);
  38. AuctionOrderDb ao1 = new AuctionOrderDb();
  39. String op = ParamUtil.get(request, "op");
  40. String sql = "select id from " + ao1.getTableName() + " order by orderDate desc";
  41. String type = ParamUtil.get(request, "type");
  42. if (op.equals("search")) {
  43. if (type.equals("orderId")) {
  44. int orderId = 0;
  45. boolean re = false;
  46. try {
  47. orderId = ParamUtil.getInt(request, "what");
  48. }
  49. catch (ErrMsgException e) {
  50. out.print(StrUtil.Alert("请输入正确的流水号!"));
  51. }
  52. if (re)
  53. sql = "select id from " + ao1.getTableName() + " where id=" + orderId + " order by orderDate desc";
  54. }
  55. if (type.equals("seller")) {
  56. String seller = ParamUtil.get(request, "what");
  57. sql = "select id from " + ao1.getTableName() + " where seller like " + StrUtil.sqlstr("%" + seller + "%") + " order by orderDate desc";
  58. }
  59. if (type.equals("buyer")) {
  60. String buyer = ParamUtil.get(request, "what");
  61. sql = "select id from " + ao1.getTableName() + " where buyer like " + StrUtil.sqlstr("%" + buyer + "%") + " order by orderDate desc";
  62. }
  63. }
  64. int total = ao1.getObjectCount(sql);
  65. paginator.init(total, pagesize);
  66. int curpage = paginator.getCurPage();
  67. //设置当前页数和总页数
  68. int totalpages = paginator.getTotalPages();
  69. if (totalpages==0)
  70. {
  71. curpage = 1;
  72. totalpages = 1;
  73. }
  74. %>
  75. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  76.   <tr> 
  77.     <td height=20 align="left" class="thead">查看订单明细</td>
  78.   </tr>
  79.   <tr> 
  80.     <td valign="top"><table width="86%"  border="0" align="center">
  81.       <tr>
  82.         <td align="center"> <form name="form1" method="post" action="?op=search">
  83.           按
  84.               <select name="type">
  85.   <option value=orderId selected>按流水号</option>
  86.   <option value=seller>按卖家</option>
  87.   <option value=buyer>按买家</option>
  88.               </select>
  89.               <input name=what size=12>
  90.           &nbsp;
  91.           <input type="submit" name="Submit" value=" 搜 索 ">
  92.         </form></td>
  93.       </tr>
  94.     </table>
  95.       <br>      <table width="86%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
  96.       <tr>
  97.         <td align="right"><div>找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></div></td>
  98.       </tr>
  99.     </table>
  100.           <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#666666" class="tableframe_gray">
  101.         <tr align="center" bgcolor="#F1EDF3">
  102.           <td width="19%" height="22">流水号</td>
  103.           <td width="22%" height="22">商品名称</td>
  104.           <td width="29%" height="22">订单生成时间</td>
  105.           <td width="30%">操作</td>
  106.         </tr>
  107. <%
  108. Vector v = ao1.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
  109. Iterator ir = v.iterator();
  110. int i = 0;
  111. while (ir.hasNext()) {
  112. AuctionOrderDb ao = (AuctionOrderDb)ir.next();
  113. i++;
  114. %>
  115.         <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
  116.           <tr align="center">
  117.             <td height="22" bgcolor="#FFFFFF">
  118.                 <%=ao.getId()%>            </td>
  119.             <td height="22" bgcolor="#FFFFFF"><%=ao.getCommodityName()%></td>
  120.             <td height="22" bgcolor="#FFFFFF"><%=DateUtil.format(ao.getOrderDate(), "yy-MM-dd HH:mm:ss")%>
  121.             </td>
  122.             <td height="22" bgcolor="#FFFFFF">
  123. <a href="../showorder.jsp?orderId=<%=ao.getId()%>">查看明细</a>&nbsp;</td>
  124.           </tr>
  125.         </form>
  126.         <%}%>
  127.       </table>
  128.           <table width="86%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  129.             <tr>
  130.               <td height="23"><div align="right">
  131. <%
  132. String querystr = "op=" + op + "&type=" + StrUtil.UrlEncode(type);
  133.     out.print(paginator.getCurPageBlock("?"+querystr));
  134. %>
  135.               </div></td>
  136.             </tr>
  137.     </table></td>
  138.   </tr>
  139. </table>
  140. </td> </tr>             
  141.       </table>                                        
  142.        </td>                                        
  143.      </tr>                                        
  144.  </table>                                        
  145.                                
  146. </body>                                        
  147. </html>                            
  148.