orderReport.jsp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <%@ page language="java" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%
  4. String path = request.getContextPath();
  5. %>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="pragma" content="no-cache" />
  10. <meta http-equiv="cache-control" content="no-cache" />
  11. <meta http-equiv="expires" content="0" />
  12. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
  13. <meta http-equiv="description" content="This is my page" />
  14. <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
  15. <script language="JavaScript" src="<%=path %>/js/public.js" type="text/javascript"></script>
  16. <script language="javascript">
  17. </script>
  18. </head>
  19. <body leftmargin="2" topmargin="2" background='<%=path %>/images/allbg.gif'>
  20. <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
  21. <tr bgcolor="#E7E7E7">
  22. <td height="14" colspan="8" background="<%=path %>/images/tbg.gif">&nbsp;月收入统计&nbsp;</td>
  23. </tr>
  24. <tr align="center" bgcolor="#FAFAF1" height="22">
  25. <td width="120px">月份</td>
  26. <td width="120px">金额</td>
  27. </tr>
  28. <c:forEach items="${orderList}" var="order">
  29. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  30. <td bgcolor="#FFFFFF" align="center">
  31. ${order.orderDate}
  32. </td>
  33. <td bgcolor="#FFFFFF" align="center">
  34. ¥${order.sjfk} 元
  35. </td>
  36. </tr>
  37. </c:forEach>
  38. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  39. <td bgcolor="#FFFFFF" align="right">
  40. 合计
  41. </td>
  42. <td bgcolor="#FFFFFF" align="center">
  43. ¥${total}元
  44. </td>
  45. </tr>
  46. </table>
  47. </body>
  48. </html>