📄 myorder.jsp
字号:
<%@ page contentType="text/html; charset=utf-8" %>
<%@ page import="java.util.*"%>
<%@ page import="cn.js.fan.db.*"%>
<%@ page import="cn.js.fan.util.*"%>
<%@ page import="com.redmoon.forum.plugin.auction.*"%>
<%@ page import="com.redmoon.forum.plugin.*"%>
<jsp:useBean id="StrUtil" scope="page" class="cn.js.fan.util.StrUtil"/>
<html><head>
<meta http-equiv="pragma" content="no-cache">
<LINK href="default.css" type=text/css rel=stylesheet>
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>我的订单列表</title>
<script language="JavaScript">
<!--
//-->
</script>
<body topmargin='0' leftmargin='0'>
<jsp:useBean id="dir" scope="page" class="com.redmoon.forum.plugin.auction.Directory"/>
<jsp:useBean id="privilege" scope="page" class="com.redmoon.forum.Privilege"/>
<%
if (!privilege.isUserLogin(request))
{
out.print(cn.js.fan.web.SkinUtil.makeErrMsg(request, cn.js.fan.web.SkinUtil.LoadString(request, "pvg_invalid")));
return;
}
String userName = ParamUtil.get(request, "userName");
if (userName.equals("")) {
out.print(StrUtil.Alert("用户名不能为空!"));
return;
}
String user = privilege.getUser(request);
if (!userName.equals(user)) {
if (!privilege.isMasterLogin(request)) {
out.print(StrUtil.Alert("对不起,您无权访问!"));
return;
}
}
String op = ParamUtil.get(request, "op");
String showType = ParamUtil.get(request, "showType").trim();
if (showType.equals("")) {
showType = "seller";
}
%>
<table width='100%' cellpadding='0' cellspacing='0' >
<tr>
<td class="head">
查看<%
if (showType.equals("seller"))
out.print("我销售的");
else
out.print("我购买的");
%>订单</td>
</tr>
</table>
<br>
<%
int pagesize = 10;
Paginator paginator = new Paginator(request);
AuctionOrderDb ao1 = new AuctionOrderDb();
String sql = "";
if (showType.equals("buyer"))
sql = "select id from " + ao1.getTableName() + " where buyer=" + StrUtil.sqlstr(userName) + " order by orderDate desc";
else
sql = "select id from " + ao1.getTableName() + " where seller=" + StrUtil.sqlstr(userName) + " order by orderDate desc";
int total = ao1.getObjectCount(sql);
paginator.init(total, pagesize);
int curpage = paginator.getCurPage();
//设置当前页数和总页数
int totalpages = paginator.getTotalPages();
if (totalpages==0)
{
curpage = 1;
totalpages = 1;
}
%>
<table width="98%" height="227" border='0' align="center" cellpadding='0' cellspacing='0' class="frame_gray">
<tr>
<td height=20 align="left" class="thead">查看订单明细</td>
</tr>
<tr>
<td valign="top"><br> <table width="86%" height="24" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="right"><div>找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=paginator.getCurrentPage() %>/<%=paginator.getTotalPages() %></b></div></td>
</tr>
</table>
<table width="86%" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#666666" class="tableframe_gray">
<tr align="center" bgcolor="#F1EDF3">
<td width="19%" height="22">流水号</td>
<td width="22%" height="22">商品名称</td>
<td width="29%" height="22">订单生成时间</td>
<td width="30%">操作</td>
</tr>
<%
Vector v = ao1.list(sql, (curpage-1)*pagesize, curpage*pagesize-1);
Iterator ir = v.iterator();
int i = 0;
while (ir.hasNext()) {
AuctionOrderDb ao = (AuctionOrderDb)ir.next();
i++;
%>
<form id="form<%=i%>" name="form<%=i%>" action="?op=modify" method="post">
<tr align="center">
<td height="22" bgcolor="#FFFFFF">
<%=ao.getId()%> </td>
<td height="22" bgcolor="#FFFFFF"><%=ao.getCommodityName()%></td>
<td height="22" bgcolor="#FFFFFF"><%=DateUtil.format(ao.getOrderDate(), "yy-MM-dd HH:mm:ss")%>
</td>
<td height="22" bgcolor="#FFFFFF">
<a href="../showorder.jsp?orderId=<%=ao.getId()%>&userName=<%=StrUtil.UrlEncode(userName)%>">查看明细</a> </td>
</tr>
</form>
<%}%>
</table>
<table width="86%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
<tr>
<td height="23"><div align="right">
<%
String querystr = "userName=" + StrUtil.UrlEncode(userName);
out.print(paginator.getCurPageBlock("?"+querystr));
%>
</div></td>
</tr>
</table></td>
</tr>
</table>
</td> </tr>
</table>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -