📄 moneymakeselect.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"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>MoneyMakeSelect.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">
-->
<script type="text/javascript">
function checkform(){
var begin = document.selectReturnMoneyForm.returnDateBegin.value;
if(begin.length==0){
alert('回款日期(起)不能为空!');
document.selectReturnMoneyForm.returnDateBegin.focus();
return false;
}
var end = document.selectReturnMoneyForm.returnDateEnd.value;
if(end.length==0){
alert('回款日期(止)不能为空!');
document.selectReturnMoneyForm.returnDateEnd.focus();
return false;
}
}
</script>
</head>
<body bgcolor="#CFFFF">
<html:form action="/selectReturnMoney.do" onsubmit="return checkform()">
<h1 align="center">
回款查询条件
</h1>
<table width="754" border="1" align="center" id="MoneyMaleSelect">
<tr>
<td width="350" height="40">
回款日期(起)
<label>
<html:text property="returnDateBegin">
</html:text>
*
</label>
</td>
<td width="388">
回款日期(止)
<html:text property="returnDateEnd"></html:text>
*
</td>
</tr>
<tr>
<td height="42">
客户名称
<html:select property="cusCode">
<html:option value="">------请选择------</html:option>
<logic:iterate id="a" name="cusdaolist">
<html:option value="${a.cusCode}">
${a.cusName}
</html:option>
</logic:iterate>
</html:select>
</td>
<td>
回款单号
<label>
<html:text property="returnMoneyCode">
</html:text>
</label>
</td>
</tr>
<tr>
<td height="43">
回款类型
<html:select property="returnMoneyType">
<html:option value="">------请选择------</html:option>
<logic:iterate id="b" name="rmtdaolist">
<html:option value="${b.rmtcode}">${b.rmtname}</html:option>
</logic:iterate>
</html:select>
</td>
<td>
部门名称
<html:select property="deptCode" >
<html:option value="">------请选择------</html:option>
<logic:iterate id="c" name="dmdaolist">
<html:option value="${c.deptCode}">${c.deptName}</html:option>
</logic:iterate>
</html:select>
</td>
</tr>
<tr>
<td height="42">
业务员
<html:select property="personCode">
<html:option value="">------请选择------</html:option>
<logic:iterate id="d" name="persondaolist">
<html:option value="${d.personCode}" >
${d.personName}
</html:option>
</logic:iterate>
</html:select>
</td>
<td>
结算方式
<html:select property="ssCode">
<html:option value="">------请选择------</html:option>
<logic:iterate id="e" name="cwsmdaolist">
<html:option value="${e.ssCode}">${e.state}</html:option>
</logic:iterate>
</html:select>
</td>
</tr>
<tr>
<td height="42">
<label>
<html:radio property="checker" value="1" />
</label>
已审核
<label>
<html:radio property="checker" value="2" />
</label>
未审核
<label>
<html:radio property="checker" value="3" />
</label>
全部
</td>
<td>
<label>
<html:radio property="maker" value="1" />
</label>
核销
<label>
<html:radio property="maker" value="2" />
</label>
未核销
<label>
<html:radio property="maker" value="3" />
</label>
全部
</td>
</tr>
<tr>
<td height="36" colspan="2" align="center">
<label>
全淸
</label>
<label>
<html:submit value="确定" />
</label>
<label>
<html:reset value="取消" />
</label>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -