📄 wareact.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>
<%@ include file="../../publicModel.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>wareAct.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<html:form action="/wareAct" method="post">
<h2 align="center">货物销售执行情况</h2>
<table border="0" align="center">
<tr>
<td>会计年度:</td>
<td>
<html:select property="kjYear">
<html:option value="0">--请选择--</html:option>
<logic:iterate id="year" name="yearList">
<html:option value="${year}">${year}</html:option>
</logic:iterate>
</html:select>
</td>
<td>月份:</td>
<td>
<html:select property="startPeriod">
<html:option value="0">--请选择--</html:option>
<logic:iterate id="month" name="periodList">
<html:option value="${month}">${month}</html:option>
</logic:iterate>
</html:select>
</td>
<td>至</td>
<td>
<html:select property="endPeriod">
<html:option value="0">--请选择--</html:option>
<logic:iterate id="month" name="periodList">
<html:option value="${month}">${month}</html:option>
</logic:iterate>
</html:select>
</td>
<td>部门编码:</td>
<td>
<html:select property="deptCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="deptcodeList" property="deptCode" labelProperty="deptCode"/>
</html:select>
</td>
<td>货物编码:</td>
<td>
<html:select property="wareCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="warecodeList" property="wareCode" labelProperty="wareCode"/>
</html:select>
</td>
<td><html:submit value="查询"/></td>
<td><html:reset value="取消"/></td>
</tr>
</table>
<br>
<br>
<table width="850" height="158" border="1" align="center" cellspacing=0 cellpadding=2 id="PowerTable">
<tr width=100% align=middle bgcolor=#C4E6DE >
<td width="90" rowspan="2">部门编码</td>
<td width="90" rowspan="2">部门名称</td>
<td width="90" rowspan="2">货物编码</td>
<td width="90" rowspan="2">货物名称</td>
<td width="70" rowspan="2">规格型号</td>
<td width="70" rowspan="2">单价</td>
<td width="70" rowspan="2">年</td>
<td width="70" rowspan="2">月</td>
<td height="21" colspan="2"><div align="center">计划情况</div></td>
<td colspan="4"><div align="center">完成情况</div></td>
<td colspan="2"><div align="center">完成率(%)</div></td>
</tr>
<tr width=100% align=middle bgcolor=#C4E6DE >
<td width="64" height="24">计划金额</td>
<td width="65">计划数量</td>
<td width="49">销售额</td>
<td width="49">销售数量</td>
<td width="72">较计划金额</td>
<td width="78">较计划数量</td>
<td width="64">计划金额</td>
<td width="58">计划数量</td>
</tr>
<logic:iterate id="waresell" name="sellFind">
<tr>
<td>${waresell[0]}<br></td>
<td>${waresell[1]}<br></td>
<td>${waresell[2]}<br></td>
<td>${waresell[3]}<br></td>
<td>${waresell[4]}<br></td>
<td>${waresell[5]}</td>
<td>${waresell[6]}</td>
<td>${waresell[7]}</td>
<td>${waresell[8]}</td>
<td>${waresell[9]}</td>
<td>${waresell[10]}</td>
<td>${waresell[11]}</td>
<td>${waresell[12]}</td>
<td>${waresell[13]}</td>
<td>${waresell[14]}</td>
<td>${waresell[15]}</td>
</tr>
</logic:iterate>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -