📄 customeradd.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>customerAdd.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><br>
<html:form action="/customerAdd.do">
<table border="1">
<tr>
<td>客户编码</td>
<td><html:text property="cusCode"/></td>
<td>客户名称</td>
<td><html:text property="cusName"/></td>
<td>所属地区</td>
<td><html:select property="areaCode">
<html:options collection="areaList" labelProperty="areaName" property="areaCode"/>
</html:select>
</td>
</tr>
<tr>
<td>所属行业</td>
<td><html:select property="tradeCode">
<html:options collection="tradeList" labelProperty="tradeName" property="tradeCode"/>
</html:select>
</td>
<td>客户地址</td>
<td><html:text property="address"/></td>
<td>邮政编码</td>
<td><html:text property="postCode"/></td>
</tr>
<tr>
<td>税号</td>
<td><html:text property="taxCode"/></td>
<td>法人名称</td>
<td><html:text property="fictPerson"/></td>
<td>开户银行</td>
<td><html:text property="bank"/></td>
</tr>
<tr>
<td>银行帐号</td>
<td><html:text property="bankAccount"/></td>
<td>上级单位</td>
<td><html:text property="cusSuper"/></td>
<td>E-mail</td>
<td><html:text property="email"/></td>
</tr>
<tr>
<td>客户网址</td>
<td><html:text property="workNet"/></td>
<td>联系人</td>
<td><html:text property="contactPerson"/></td>
<td>联系方式</td>
<td><html:text property="contactType"/></td>
</tr>
<tr>
<td>收货地址</td>
<td><html:text property="desAddress"/></td>
<td>信用等级</td>
<td><html:text property="creditGrade"/></td>
<td>信用额度</td>
<td><html:text property="creditMoney"/></td>
</tr>
<tr>
<td>帐龄额度</td>
<td><html:text property="creditageMoney"/></td>
<td>信用天数</td>
<td><html:text property="creditDate"/></td>
<td>最后交易日</td>
<td><bean:write name="date"/></td>
</tr>
<%-- <tr>--%>
<%-- <td>最后交易额</td>--%>
<%-- <td><html:text property="jiaoyiMoney"/></td>--%>
<%-- <td>最后回款日</td>--%>
<%-- <td><html:text property="huikuanDate"/></td>--%>
<%-- <td>最后回款额</td>--%>
<%-- <td><html:text property="huikuanMoney"/></td>--%>
<%-- </tr>--%>
<tr>
<%-- <td>应收金额</td>--%>
<%-- <td><html:text property="yishouMoney"/></td>--%>
<td>分管部门</td>
<td><html:select property="deptCode">
<html:options collection="bumenList" labelProperty="deptName" property="deptCode"/>
</html:select>
</td>
<td>所属销售员</td>
<td><html:select property="personCode">
<html:options collection="yewuList" labelProperty="personName" property="personCode"/>
</html:select>
</td>
</tr>
<tr>
<td> </td>
<td><html:checkbox property="stopFlag"/>停用</td>
<td><html:submit value="新增"/></td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -