📄 updatereturnmoney.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>UpdateReturnMoney.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>
<script type="text/javascript">
function checkform(){
//回款单号
var returnMoneyCode=document.returnMoneyForm.returnMoneyCode.value;
alert(returnMoneyCode);
if(returnMoneyCode.length==0)
{
alert("回款单号不能为空!");
document.returnMoneyForm.returnMoneyCode.focus();
return false;
}
//客 户
var cusCode=document.returnMoneyForm.cusCode.value;
if(cusCode.length==0||cusCode=='null'){
alert("客户不能为空!");
document.returnMoneyForm.cusCode.focus();
return false;
}
//部 门
var deptCode=document.returnMoneyForm.deptCode.value;
if(deptCode.length==0||deptCode=='null'){
alert("部门不能为空!");
document.returnMoneyForm.deptCode.focus();
return false;
}
var foreignCurrcode=document.returnMoneyForm.foreignCurrcode.value;
if(foreignCurrcode.length==0||foreignCurrcode=='null'){
alert("币种不能为空!");
document.returnMoneyForm.foreignCurrcode.focus();
return false;
}
}
</script>
<body bgcolor="#CFFFF">
<br><html:form onsubmit="return checkform()" action="/update.do">
<h1 align="center">
回款数据更改
</h1>
<table align="center" border="1" >
<tr>
<html:hidden property="returnMoneyId"/>
<td>
回款单号: <html:text property="returnMoneyCode"></html:text>*
</td>
<td>回款类型:
<html:text property="rmtcode" >
</html:text>
</td>
<td>
客 户:
<html:text property="cusCode" ></html:text>*
</td>
</tr>
<tr>
<td>
结算方式:
<html:text property="ssCode" >
</html:text>
</td>
<td>
部 门:
<html:text property="deptCode"></html:text>*
</td>
<td>
销 售 员:<html:text property="personCode"></html:text>
</td>
</tr>
<tr>
<td>
开户银行: <html:text property="bank" ></html:text>
</td>
<td>
银行帐号:<html:text property="bankAccount" ></html:text>
</td>
<td>
经 办 人:<html:text property="processor" ></html:text>
</td>
</tr>
<tr>
<td>
币 种:
<html:text property="foreignCurrcode" >
</html:text>*
</td>
<td>
汇 率: <html:text property="exchart" ></html:text>
</td>
<td>
票 据 号:<html:text property="billNo" ></html:text>
</td>
</tr>
<tr>
<td>
回款金额: <html:text property="returnMoney" ></html:text>
</td>
<td>
签收人: <html:text property="signer" ></html:text>
</td>
<td colspan="2">
备 注:
<html:textarea property="remark" cols="20" ></html:textarea>
</td>
</tr>
<tr>
</tr>
<TR>
<td>
制 单 人:
<html:text property="maker"></html:text>
</td>
<td colspan="2">
审核人:
<html:text property="checker" ></html:text>
</td>
<td></td>
</tr>
<tr>
<TD colspan="3" align="center">
<html:submit>提交</html:submit>
<html:reset>重置</html:reset>
</TD>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -