order_detail.jsp
上传用户:tanyanyong
上传日期:2013-06-23
资源大小:1355k
文件大小:5k
源码类别:

电子政务应用

开发平台:

MultiPlatform

  1. <%@ page session="true" %>
  2. <%
  3. if (session.getAttribute("admin")==null || session.getAttribute("admin")==""){
  4. response.sendRedirect("error.htm");
  5. } %>
  6. <%@ page import="bookshop.book.*" %>
  7. <%@ page import="bookshop.util.*" %>
  8. <jsp:useBean id="myIndentlist" scope="page" class="bookshop.run.op_buy" />
  9. <jsp:useBean id="mybook" scope="page" class="bookshop.run.op_book" />
  10. <jsp:useBean id="user" scope="page" class="bookshop.run.op_user" />
  11. <%
  12. String mesg = "";
  13. long Id=0;
  14. String submit= request.getParameter("submit");
  15. if (submit!=null && !submit.equals("")){
  16. if (myIndentlist.update(request))
  17. mesg = "更新订单状态成功!";
  18. else 
  19. mesg = "更新订单状态出错!";
  20. }
  21. String order_id=request.getParameter("indentid");
  22. //out.print(order_id);
  23. if (order_id==null || order_id.equals("")) {
  24. mesg = "你要查看的订单清单不存在!";
  25. } else {
  26. try {
  27. if (!myIndentlist.getSinggleOrder(order_id) || !myIndentlist.getAllorder(order_id)){
  28. mesg = "你要查看的订单清单不存在!";
  29. }
  30. } catch (Exception e){
  31. mesg = "你要查看的订单清单不存在!";
  32. }
  33. }
  34. %>
  35. <script language="javascript">
  36.   function openScript(url,name, width, height){
  37. var Win = window.open(url,name,'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
  38. }
  39. </script>
  40. <html>
  41. <head>
  42. <title>隽隽书店管理系统 查看订单详细</title>
  43. <body bgcolor="#FFCC99" text="#000000" >
  44.  <% if(!mesg.equals("")){
  45. out.println(mesg);
  46.   } else {
  47.          //out.print(order_id);
  48. order Ident = (order) myIndentlist.getAllorder().elementAt(0);
  49. //out.print(Ident.size());
  50. out.println(mesg);
  51. %>
  52. <p>隽隽书店图书订单<%= Ident.getOrderId() %>&nbsp;清单:</p>
  53.           <table width="95%" border="1" cellspacing="1" cellpadding="1" bordercolor="#2DAE2D">
  54.           <tr align="center"> 
  55.             <td>图书名称</td>
  56.             <td>作者</td>
  57.             <td>图书类别</td>
  58.             <td>单价(元)</td>
  59.             <td>数量</td>
  60.           </tr>
  61. <%
  62. float totalprice =0;
  63. int totalamount = 0;
  64. for (int i=0; i<myIndentlist.getOrder_list().size();i++){
  65. out.println(mesg);
  66. allorder idList = (allorder) myIndentlist.getOrder_list().elementAt(i);
  67. if (mybook.getOnebook((int)idList.getBookNo()) ){
  68. book bk = (book) mybook.getBooklist().elementAt(0);
  69. %>   
  70.       <tr align="center"> 
  71.             <td><%= bk.getBookName() %></td>
  72.             <td><%= bk.getAuthor() %></td>
  73.             <td><%= bk.getClassname() %></td>
  74.             <td><%= bk.getPrince() %></td>
  75.             <td><%= idList.getAmount() %></td>
  76.           </tr>
  77. <% totalprice = totalprice + bk.getPrince() * idList.getAmount();
  78. totalamount = totalamount + idList.getAmount();
  79. } %>
  80. <%   }%><tr align="center"> 
  81.             <td colspan=5 >购买的总金额是:<%= totalprice %>元,总数量是<%= totalamount%>本</td> </tr>
  82. </table>
  83.   <br>
  84.   <table width="95%" border="1" cellspacing="2" cellpadding="1" bordercolor="#2DAE2D">
  85.     <tr> 
  86.       <td width="40%" align="right">下单用户:</td>
  87.       <td width="60%"><%
  88. if (user.getUserinfo(Ident.getUserId()) ) {
  89. user userinfo = (user)user.getUserlist().elementAt(0); %>
  90. <a href="#" onclick="openScript('user_detail.jsp?userid=<%= Ident.getUserId() %>','showuser',450,500)"><%= userinfo.getUserName() %></a>
  91. <%} else {
  92. out.println("该用户已被删除");
  93. }
  94. %></td>
  95.     </tr>
  96.     <tr> 
  97.       <td width="40%" align="right">下单时间:</td>
  98.       <td width="60%"><%= Ident.getSubmitTime() %></td>
  99.     </tr>
  100.     <tr> 
  101.       <td width="40%" align="right">交货时间:</td>
  102.       <td width="60%"><%= Ident.getConsignmentTime() %>&nbsp;</td>
  103.     </tr>
  104.     <tr> 
  105.       <td width="40%" align="right">总金额:</td>
  106.       <td width="60%"><%= Ident.getTotalPrice() %>&nbsp;</td>
  107.     </tr>
  108.     <tr> 
  109.       <td width="40%" align="right">下单时IP:</td>
  110.       <td width="60%"><%= Ident.getIPAddress() %>&nbsp;</td>
  111.     </tr>
  112.     <tr> 
  113.       <td width="40%" align="right">用户备注:</td>
  114.       <td width="60%"><%= dataFormat.toHtml(Ident.getContent()) %>&nbsp;</td>
  115.     </tr>
  116. <form name="form1" method="post" action="order_detail.jsp" >
  117.     <tr> 
  118.       <td width="40%" align="right">是否付款:</td>
  119.       <td width="60%"> 
  120.         <input type="radio" name="payoff" value="1" <%if (!Ident.getIsPayoff()) out.print("checked") ; %>>
  121.         否<input type="radio" name="payoff" value="2" <%if (Ident.getIsPayoff()) out.print("checked") ; %>>
  122.         是</td>
  123.     </tr>
  124.     <tr> 
  125.       <td width="40%" align="right">是否交货:</td>
  126.       <td width="60%"> 
  127.         <input type="radio" name="sales" value="1" <%if (!Ident.getIsSales()) out.print("checked") ; %>>
  128.         否<input type="radio" name="sales" value="2" <%if (Ident.getIsSales()) out.print("checked") ; %>>
  129.         是</td>
  130.     </tr>
  131.     <tr>
  132.       <td width="40%" align="right">&nbsp;</td>
  133.       <td width="60%">
  134. <input type="hidden" name="indentid" value="<%= order_id %>">
  135.         <input type="submit" name="submit" value="更新">
  136.       </td>
  137.     </tr>
  138. </form>
  139.   </table>
  140.    <% } %>     
  141.  <br><p><a href="javascript:window.close()">关闭窗口</a></p>
  142.   <table width="100%" border="0" cellspacing="2" cellpadding="2">
  143.     <tr>
  144.       <td align="center">隽隽书店开发<br>
  145.         CopyRight@2003 <br>
  146.         Email:<a href="mailto:wxy8108123@163.com">wxy8108123@163.com</a></td>
  147.     </tr>
  148.   </table>
  149.   
  150. </div>
  151. </body>
  152. </html>