⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 personact.jsp

📁 关于网上汽车销售系统的详细编程项目实战实例
💻 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>personAct.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="/personAct" 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="personCode">
				<html:option value="0">--请选择--</html:option>
				<html:options collection="personcodelist" property="personCode" labelProperty="personCode"/>
			</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="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="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="personsell" name="sellFind">
        <tr>
          <td>${personsell[0]}<br></td>
          <td>${personsell[1]}<br></td>
          <td>${personsell[2]}<br></td>
          <td>${personsell[3]}<br></td>
          <td>${personsell[4]}<br></td>
          <td>${personsell[5]}</td>
          <td>${personsell[6]}</td>
          <td>${personsell[7]}</td>
          <td>${personsell[8]}</td>
		  <td>${personsell[9]}</td>
		  <td>${personsell[10]}</td>
		  <td>${personsell[11]}</td>
          <td>${personsell[12]}</td>
          <td>${personsell[13]}</td>
		  <td>${personsell[14]}</td>
		  <td>${personsell[15]}</td>
        </tr>
        </logic:iterate>
      </table>
  </html:form>
    </body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -