selordrpt.jsp
来自「阳光超市管理系统 阳光超市管理系统(07.6.12」· JSP 代码 · 共 93 行
JSP
93 行
<%@ page language="java" pageEncoding="gb2312"%>
<jsp:directive.page import="finance.FinanceBean;" />
<html>
<head>
<title>商品销售排行报表</title>
</head>
<body text="#666666">
<div align="center">
<h3>
欣欣超市商品销售排行报表
</h3>
<p>
<%
FinanceBean[] fbs = (FinanceBean[]) request.getAttribute("fbs");
if (fbs != null) {
%>
统计日期:
<%=request.getParameter("fromdate")%>
至
<%=request.getParameter("todate")%>
<table align="center" border="1" width="85%" cellspacing="1"
cellpadding="1" bordercolor="#DADADA" bordercolordark="EBEBEB">
<tr bgcolor="#EBEBEB">
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;">
商品编号</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;">
商品名称</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;">
销售数量</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;">
总销售额</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;"> 利润</span>
</font>
<br>
</th>
</tr>
<%
for (int i = 0; i < fbs.length; i++) {
%>
<tr>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;"> <%=fbs[i].getMerchID()%>
</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;"> <%=fbs[i].getMerchName()%>
</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;"> <%=fbs[i].getSaleTotal()%>
</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;"> <%=fbs[i].getSaleAmount()%>
</span> </font>
<br>
</th>
<th width="%10" align="center">
<font size="3"><span style="font-weight: normal;"> <%=fbs[i].getSaleAmount()
- fbs[i].getMerchPrice() * fbs[i].getSaleTotal()%> </span> </font>
<br>
</th>
</tr>
<%
}
%>
</table>
<%
}
%>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?