📄 cuslist.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>cusList.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="/cusList" method="post">
<font size="2"><br></font>
<table width="574" border="0" align="center" height="29">
<tbody><tr>
<td width="81"><font size="2">部门编码</font></td>
<td width="70">
<html:select property="deptCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="deptcodeList" property="deptCode" labelProperty="deptCode"/>
</html:select>
</td>
<td width="100"><font size="2">会计年度</font></td>
<td width="91">
<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 width="81"><font size="2">客户编码</font></td>
<td width="70">
<html:select property="cusCode">
<html:option value="0">--请选择--</html:option>
<html:options collection="cuscodeList" property="cusCode" labelProperty="cusCode"/>
</html:select>
</td>
<td width="42"><font size="2"><html:submit value="查询" /></font></td>
<td width="47"><font size="2"><html:reset value="重置" /></font></td></tr>
</tbody></table>
</html:form>
<br>
<h2 align="center">客户销售计划编制</h2>
<table width="800" height="126" border="1" align="center" cellSpacing=0 cellPadding=2 id="PowerTable">
<tr width=100% align=middle bgcolor=#C4E6DE >
<td rowspan="2">部门编码</td>
<td rowspan="2">部门名称</td>
<td rowspan="2">客户编码</td>
<td rowspan="2">客户名称</td>
<td rowspan="2">年</td>
<td colspan="2"><div align="center">年</div></td>
<td rowspan="2">查看</td>
</tr>
<tr width=100% align=middle bgcolor=#C4E6DE >
<td><div align="center">计划金额</div></td>
<td><div align="center">销售定额</div></td>
</tr>
<logic:iterate id="cusplan" name="xsplanFind">
<tr>
<td>${cusplan[0]}<br></td>
<td>${cusplan[1]}<br></td>
<td>${cusplan[2]}<br></td>
<td>${cusplan[3]}<br></td>
<td>${cusplan[4]}<br></td>
<td>${cusplan[5]}<br></td>
<td>${cusplan[6]}<br></td>
<td align="center"><html:link action="deptMonthPlan.do?dCode=${cusplan[0]}&year=${cusplan[4]}&cCode=${cusplan[2]}">每月销售计划</html:link><br></td>
</tr>
</logic:iterate>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -