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

📄 clientproductioninfo.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_open.gif" align="absmiddle"><span class="big3">客户资料明细</span>
    </td>
  </tr>
</table>
<br>

<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" value="${clientProduction.clientProductionName }" readonly="true"  size="20" maxlength="100"></html:text>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">产品编码: </td>
    <td nowrap class="TableData" colspan="3" >
        <html:text property="clientProductionId" value="${clientProduction.clientProductionId }" readonly="true"   size="20" maxlength="100"></html:text>
    </td>
   </tr>
   <tr>
    <td nowrap class="TableData" width="25%">客户名称: </td>
    <td nowrap class="TableData" colspan="3" >
        <html:text property="clientId" value="${clientProduction.client.clientName }" readonly="true"   size="20" maxlength="100"></html:text>
    </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:text property="productionTypeId" value="${clientProduction.productionType.name }" readonly="true"   size="20" maxlength="100"></html:text>
    </td>
   </tr>
  <tr>
    <td nowrap class="TableData" width="25%">产品单价: </td>
    <td nowrap class="TableData" colspan="3" >
       <html:text property="price" value="${clientProduction.price }" readonly="true"   size="20" maxlength="100" ></html:text>
    </td>

   </tr>
  <tr>
    <td nowrap class="TableData" width="25%">产品数量: </td>
    <td nowrap class="TableData"  colspan="3">
       	<html:text property="amount" value="${clientProduction.amount }" readonly="true"   size="20" maxlength="100"></html:text>
	 </td>
  </tr>
<tr>
    <td nowrap  class="TableControl" colspan="4" align="center">
         <html:button property="返回" onclick="history.back(-1);" styleClass="BigButton" >返回</html:button>
    </td>
   </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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