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

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="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="dir" scope="page" class="com.redmoon.forum.plugin.auction.Directory"/>
  20. <jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
  21. <%
  22. if (!privilege.isUserLogin(request))
  23. {
  24. out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
  25. return;
  26. }
  27. String userName = ParamUtil.get(request, "userName");
  28. if (userName.equals("")) {
  29. out.print(StrUtil.Alert("用户名不能为空!"));
  30. return;
  31. }
  32. String user = privilege.getUser(request);
  33. if (!userName.equals(user)) {
  34. if (!privilege.isMasterLogin(request)) {
  35. out.print(StrUtil.Alert("对不起,您无权访问!"));
  36. return;
  37. }
  38. }
  39. String op = ParamUtil.get(request, "op");
  40. String showType = ParamUtil.get(request, "showType").trim();
  41. if (showType.equals("")) {
  42. showType = "seller";
  43. }
  44. %>
  45. <table width='100%' cellpadding='0' cellspacing='0' >
  46.   <tr>
  47.     <td class="head">
  48. 查看<%
  49. if (showType.equals("seller"))
  50. out.print("我销售的");
  51. else
  52. out.print("我购买的");
  53. %>订单</td>
  54.   </tr>
  55. </table>
  56. <br>
  57. <%
  58. int pagesize = 10;
  59. Paginator paginator = new Paginator(request);
  60. AuctionOrderDb ao1 = new AuctionOrderDb();
  61. String sql = "";
  62. if (showType.equals("buyer"))
  63. sql = "select id from " + ao1.getTableName() + " where buyer=" + StrUtil.sqlstr(userName) + " order by orderDate desc";
  64. else
  65. sql = "select id from " + ao1.getTableName() + " where seller=" + StrUtil.sqlstr(userName) + " order by orderDate desc";
  66. int total = ao1.getObjectCount(sql);
  67. paginator.init(total, pagesize);
  68. int curpage = paginator.getCurPage();
  69. //设置当前页数和总页数
  70. int totalpages = paginator.getTotalPages();
  71. if (totalpages==0)
  72. {
  73. curpage = 1;
  74. totalpages = 1;
  75. }
  76. %>
  77. <table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
  78.   <tr> 
  79.     <td height=20 align="left" class="thead">查看订单明细</td>
  80.   </tr>
  81.   <tr> 
  82.     <td valign="top"><br>      <table width="86%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
  83.       <tr>
  84.         <td align="right"><div>找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></div></td>
  85.       </tr>
  86.     </table>
  87.           <table width="86%"  border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#666666" class="tableframe_gray">
  88.         <tr align="center" bgcolor="#F1EDF3">
  89.           <td width="19%" height="22">流水号</td>
  90.           <td width="22%" height="22">商品名称</td>
  91.           <td width="29%" height="22">订单生成时间</td>
  92.           <td width="30%">操作</td>
  93.         </tr>
  94. <%
  95. Vector v = ao1.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
  96. Iterator ir = v.iterator();
  97. int i = 0;
  98. while (ir.hasNext()) {
  99. AuctionOrderDb ao = (AuctionOrderDb)ir.next();
  100. i++;
  101. %>
  102.         <form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
  103.           <tr align="center">
  104.             <td height="22" bgcolor="#FFFFFF">
  105.                 <%=ao.getId()%>            </td>
  106.             <td height="22" bgcolor="#FFFFFF"><%=ao.getCommodityName()%></td>
  107.             <td height="22" bgcolor="#FFFFFF"><%=DateUtil.format(ao.getOrderDate(), "yy-MM-dd HH:mm:ss")%>
  108.             </td>
  109.             <td height="22" bgcolor="#FFFFFF">
  110. <a href="../showorder.jsp?orderId=<%=ao.getId()%>&userName=<%=StrUtil.UrlEncode(userName)%>">查看明细</a>&nbsp;</td>
  111.           </tr>
  112.         </form>
  113.         <%}%>
  114.       </table>
  115.           <table width="86%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  116.             <tr>
  117.               <td height="23"><div align="right">
  118. <%
  119. String querystr = "userName=" + StrUtil.UrlEncode(userName);
  120.     out.print(paginator.getCurPageBlock("?"+querystr));
  121. %>
  122.               </div></td>
  123.             </tr>
  124.           </table></td>
  125.   </tr>
  126. </table>
  127. </td> </tr>             
  128.       </table>                                        
  129.        </td>                                        
  130.      </tr>                                        
  131.  </table>                                        
  132.                                
  133. </body>                                        
  134. </html>                            
  135.