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

📄 clientproductionform.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>

<html>
  <head>
    <title>My JSP 'clientList.jsp' starting page</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>
  
<body class="bodycolor" topmargin="5" onload="document.form1.CUSTOMER_NAME.focus();">

<table class="title1">
  <tr>
    <td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3">客户资料编辑</span>
    </td>
  </tr>
</table>
<br>

<html:form action="clientProduction.do" method="post">
<html:hidden property="p" value="save"/>
<html:hidden property="id"/>
<table class="tablestyle1">
   
   <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
     基本信息:
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">客户产品名称: </td>
    <td nowrap class="TableData" colspan="3">
         <html:text property="clientProductionName"  size="20" maxlength="100"></html:text>
         <font color="red"><html:errors property="clientProductionName" /></font>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">产品编码: </td>
    <td nowrap class="TableData" colspan="3" >
        <html:text property="clientProductionId"  size="20" maxlength="100"></html:text>
        <font color="red"><html:errors property="clientProductionId" /></font>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">客户名称: </td>
    <td nowrap class="TableData" colspan="3" >
        <html:select property="clientId">
        	<html:option value="">--请选择--</html:option>
        	<html:options collection="clients" property="id" labelProperty="clientName"/>
        </html:select>
        <font color="red"><html:errors property="clientId" /></font>
    </td>
   </tr>
   
  <tr>
    <td nowrap  class="TableHeader" colspan="4" align="left">
     产品基本信息:
    </td>
  </tr>
	<tr>
    <td nowrap class="TableData" width="25%">产品类型: </td>
    <td nowrap class="TableData" colspan="3" >
        <html:select property="productionTypeId">
        	<html:option value="">--请选择--</html:option>
        	<html:options collection="productionTypes" property="id" labelProperty="name"/>
        </html:select>
        <font color="red"><html:errors property="productionTypeId" /></font>
    </td>
   </tr>
  <tr>
    <td nowrap class="TableData" width="25%">产品单价: </td>
    <td nowrap class="TableData" colspan="3" >
       <html:text property="price"  size="20" maxlength="100"></html:text>
       <font color="red"><html:errors property="price" /></font>
    </td>

   </tr>
  <tr>
    <td nowrap class="TableData" width="25%">产品数量: </td>
    <td nowrap class="TableData"  colspan="3">
       	<html:text property="amount"  size="20" maxlength="100"></html:text>
       	<font color="red"><html:errors property="amount" /></font>
	 </td>
  </tr>
<tr>
    <td nowrap  class="TableControl" colspan="4" align="center">
        <html:submit styleClass="BigButton" title="添加客户产品">确定</html:submit>&nbsp;
        <html:reset  styleClass="BigButton" title="重填">重填</html:reset>
    </td>
   </tr>
</table>
</html:form>
</body>
</html>

⌨️ 快捷键说明

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