📄 editdingdan.asp
字号:
<!--#include file="conn.asp"-->
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登录!');window.location.reload('login.asp')</script>"
response.End
end if
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../images/css2.css" rel="stylesheet" type="text/css">
</head>
<body>
<%dim zhuangtai,namekey
namekey =trim(request("namekey"))
zhuangtai=trim(request("zhuangtai"))
if zhuangtai="" then zhuangtai=0
if namekey ="" then namekey=request.querystring("namekey")
%>
<table width="90%" border="0" height=450 cellpadding="0" cellspacing="0">
<tr><br><td bgcolor="#ece9d8">
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td>
<table width=77 border="0" cellpadding="0" cellspacing="0">
<tr valign=bottom>
<td background=images/get_img.gif width=77 height=26><P style='PADDING-LEFT: 7px'><div align="center"><font color=#ffffff>订单管理</font></div></td>
</tr>
</table>
<td><div align="right">选择查看类型
<select name="zhuangtai" onchange="var jmpURL=this.options[this.selectedIndex].value ; if(jmpURL!='') {window.location=jmpURL;} else {this.selectedIndex=0 ;}" ><base target=Right>
<option value="editdingdan.asp?zhuangtai=0" selected>--选择查询状态--</option>
<option value="editdingdan.asp?zhuangtai=0" >全部订单状态</option>
<option value="editdingdan.asp?zhuangtai=1" >读者已下订单</option>
<option value="editdingdan.asp?zhuangtai=2" >读者已划出款</option>
<option value="editdingdan.asp?zhuangtai=3" >图书网收到款</option>
<option value="editdingdan.asp?zhuangtai=4" >图书网已发货</option>
<option value="editdingdan.asp?zhuangtai=5" >读者已收到货</option>
</select>
</div></td>
</tr>
</table>
<%
'//开始分页
Const MaxPerPage=13
dim totalPut
dim CurrentPage
dim TotalPages
dim j
dim sql
if Not isempty(request("page")) then
currentPage=Cint(request("page"))
else
currentPage=1
end if
set rs=server.CreateObject("adodb.recordset")
if namekey="" then
'//按状态查询
if zhuangtai=0 or zhuangtai="" then
select case zhuangtai
case "0"
rs.open "select distinct(dingdan),userid,userzhenshiname,actiondate,songid,zhifufangshi,zhuangtai from shop_action where zhuangtai<6 order by actiondate desc",conn,1,1
case ""
rs.open "select distinct(dingdan),userid,userzhenshiname,actiondate,songid,zhifufangshi,zhuangtai from shop_action where zhuangtai<5 order by actiondate desc",conn,1,1
end select
else
rs.open "select distinct(dingdan),userid,userzhenshiname,actiondate,songid,zhifufangshi,zhuangtai from shop_action where zhuangtai="&zhuangtai&" order by actiondate",conn,1,1
end if
else
'//按用户查询
if zhuangtai=0 or zhuangtai="" then
rs.open "select distinct(dingdan),userid,userzhenshiname,actiondate,songid,zhifufangshi,zhuangtai from shop_action where zhuangtai<5 and username='"&namekey&"' order by actiondate desc",conn,1,1
else
rs.open "select distinct(dingdan),userid,userzhenshiname,actiondate,songid,zhifufangshi,zhuangtai from shop_action where zhuangtai="&zhuangtai&" and username='"&namekey&"' order by actiondate",conn,1,1
end if
end if
if rs.eof And rs.bof then%>
<table width="98%" border="1" align=center cellspacing="0" cellpadding="3" bordercolordark="#FFFFFF" bordercolorlight="#666666">
<tr>
<td bgcolor="#ece9d8"><div align="center"><font color=red>对不起,您选择的状态目前还没有订单! </font></div></td>
</tr>
</table>
<%else
totalPut=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if
if currentPage=1 then
showContent
showpage totalput,MaxPerPage,"editdingdan.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showContent
showpage totalput,MaxPerPage,"editdingdan.asp"
else
currentPage=1
showContent
showpage totalput,MaxPerPage,"editdingdan.asp"
end if
end if
end if
sub showContent
dim i
dim i_mun
dim i_color
i=0:i_mun=1
%>
<table width="98%" border="1" align=center cellspacing="0" cellpadding="3" bordercolordark="#FFFFFF" bordercolorlight="#666666">
<tr>
<td bgcolor="#cccccc"><div align="center">订单号</div></td>
<td bgcolor="#cccccc"><div align="center">下单用户</div></td>
<td bgcolor="#cccccc"><div align="center">订货人姓名</div></td>
<td bgcolor="#cccccc"><div align="center">付款方式</div></td>
<td bgcolor="#cccccc"><div align="center">收货方式</div></td>
<td bgcolor="#cccccc"><div align="center">订单状态</div></td>
</tr>
<%
do while not rs.eof
dim rs_usrname,username
set rs_usrname=server.CreateObject("adodb.recordset")
rs_usrname.open "select username from shop_user where userid="&rs("userid"),conn,1,1
username=trim(rs_usrname("username"))
rs_usrname.close
set rs_usrname=nothing
if i_mun mod 2=1 then
i_color="#ffffff"
else
i_color="#eeeeee"
end if
%>
<tr>
<td bgcolor=<%=i_color%>><div align="center"><a href=# onClick="javascript:window.open('viewdingdan.asp?dan=<%=trim(rs("dingdan"))%>&username=<%=username%>','','width=710,height=388,toolbar=no, status=no, menubar=no, resizable=yes, scrollbars=yes');return false;"><%=trim(rs("dingdan"))%></a></div></td>
<td bgcolor=<%=i_color%>><div align="center"><%=username%></div></td>
<td bgcolor=<%=i_color%>><div align="center"><%=trim(rs("userzhenshiname"))%></div></td>
<td bgcolor=<%=i_color%>><div align="center"><%dim rs2
'///支付方式
set rs2=server.CreateObject("adodb.recordset")
rs2.open "select * from shop_songhuo where songid="&int(rs("zhifufangshi")),conn,1,1
if rs2.eof and rs2.bof then
response.write "方式已删除"
else
response.Write trim(rs2("subject"))
end if
rs2.Close
set rs2=nothing
%></div></td>
<td bgcolor=<%=i_color%>><div align="center"><%
'///送货方式
set rs2=server.CreateObject("adodb.recordset")
rs2.Open "select * from shop_songhuo where songid="&int(rs("songid")),conn,1,1
if rs2.eof and rs2.bof then
response.write "方式已删除"
else
response.Write trim(rs2("subject"))
end if
rs2.close
set rs2=nothing%></div></td>
<td bgcolor=<%=i_color%>><div align="center">
<%
select case rs("zhuangtai")
case "1"
response.write "读者已下订单"
case "2"
response.write "读者已划出款"
case "3"
response.write "图书网收到款"
case "4"
response.write "图书网已发货"
case "5"
response.write "读者已收到货"
end select%>
</div></td>
</tr>
<%
i_mun=i_mun+1
i=i+1
if i>=MaxPerPage then Exit Do
rs.movenext
loop
rs.close
set rs=nothing%>
</table>
<%
End Sub
Function showpage(totalnumber,maxperpage,filename)
Dim n
If totalnumber Mod maxperpage=0 Then
n= totalnumber \ maxperpage
Else
n= totalnumber \ maxperpage+1
End If
'//
if namekey="" then
Response.Write "<form method=Post action="&filename&"?zhuangtai="&zhuangtai&">"
else
Response.Write "<form method=Post action="&filename&"?zhuangtai="&zhuangtai&"&namekey="&namekey&">"
end if
'//
Response.Write "<p align='center' class='contents'> "
If CurrentPage<2 Then
Response.Write "<font class='contents'>首页 上一页</font> "
Else
'//
if namekey="" then
Response.Write "<a href="&filename&"?page=1&zhuangtai="&zhuangtai&" class='contents'>首页</a> "
Response.Write "<a href="&filename&"?page="&CurrentPage-1&"&zhuangtai="&zhuangtai&" class='contents'>上一页</a> "
ELSE
Response.Write "<a href="&filename&"?page=1&zhuangtai="&zhuangtai&"&namekey="&namekey&" class='contents'>首页</a> "
Response.Write "<a href="&filename&"?page="&CurrentPage-1&"&zhuangtai="&zhuangtai&"&namekey="&namekey&" class='contents'>上一页</a> "
end if
'//
End If
If n-currentpage<1 Then
Response.Write "<font class='contents'>下一页 尾页</font>"
Else
'//
if namekey="" then
Response.Write "<a href="&filename&"?page="&(CurrentPage+1)&"&zhuangtai="&zhuangtai&" class='contents'>"
Response.Write "下一页</a> <a href="&filename&"?page="&n&"&zhuangtai="&zhuangtai&" class='contents'>尾页</a>"
else
Response.Write "<a href="&filename&"?page="&(CurrentPage+1)&"&zhuangtai="&zhuangtai&"&namekey="&namekey&" class='contents'>"
Response.Write "下一页</a> <a href="&filename&"?page="&n&"&zhuangtai="&zhuangtai&"&namekey="&namekey&" class='contents'>尾页</a>"
end if
'//
End If
Response.Write "<font class='contents'> 页次:</font><font class='contents'>"&CurrentPage&"</font><font class='contents'>/"&n&"页</font> "
Response.Write "<font class='contents'> 共有"&totalnumber&"笔订单 "&maxperpage&"笔订单/页</font> "
Response.Write "<font class='contents'>转到:</font><input type='text' name='page' size=2 maxlength=10 class=smallInput value="¤tpage&">"
Response.Write " <input type='submit' class='contents' value='GO' name='cndok'></form>"
End Function
%>
<table width="98%" border="0" height="80" align=center cellpadding="0" cellspacing="0" bgcolor="#ece9d8">
<tr>
<td>
<table width=77 border="0" cellpadding="0" cellspacing="0">
<tr valign=bottom>
<td background=images/get_img.gif width=77 height=26><P style='PADDING-LEFT: 7px'><div align="center"><font color=#ffffff>订单查询</font></div></td>
</tr>
</table>
<table width="100%" border="1" align=left cellspacing="0" cellpadding="3" bordercolordark="#FFFFFF" bordercolorlight="#666666">
<tr><form name="form1" method="post" action="editdingdan.asp">
<td bgcolor="#cccccc"><div align="center">按下单用户查询
<input name="namekey" type="text" class="tx" id="namekey" value="请输入用户名" size="14" onFocus="this.value=''">
<select name="zhuangtai" id="zhuangtai">
<option value="0" selected>--选择查询状态--</option>
<option value="0" >全部订单状态</option>
<option value="1" >读者已下订单</option>
<option value="2" >读者已划出款</option>
<option value="3" >图书网收到款</option>
<option value="4" >图书网已发货</option>
<option value="5" >读者已收到货</option>
</select>
<input type="submit" name="Submit" class="bt5" value="查 询">
</div></td></form>
</tr>
</table>
<br>
</tr>
</table>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -