📄 deptact.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>deptAct.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="/deptAct" 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><html:submit value="查询"/></td>
<td><html:reset value="取消"/></td>
</tr>
</table>
<br>
<br>
<table width="800" 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="70" rowspan="2">年</td>
<td width="70" rowspan="2">月</td>
<td height="21" colspan="2"><div align="center">计划情况</div></td>
<td colspan="3"><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="72">较计划金额</td>
<td width="78">较销售定额</td>
<td width="64">计划金额</td>
<td width="58">销售定额</td>
</tr>
<logic:iterate id="deptsell" name="sellFind">
<tr>
<td>${deptsell[0]}<br></td>
<td>${deptsell[1]}<br></td>
<td>${deptsell[2]}<br></td>
<td>${deptsell[3]}<br></td>
<td>${deptsell[4]}<br></td>
<td>${deptsell[5]}</td>
<td>${deptsell[6]}</td>
<td>${deptsell[7]}</td>
<td>${deptsell[8]}</td>
<td>${deptsell[9]}</td>
<td>${deptsell[10]}</td>
</tr>
</logic:iterate>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -