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

📄 60cd30030f2e001d141adb233f2e4e02

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<script language="javascript" src="js/calendar.js"></script>
<html:html>
  <head>
    <title>${CompanyName }${ProjectName }</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>
 <body class="bodycolor" topmargin="5" onload="document.form1.PROVIDER_NAME.focus();">
	<table class="title1">
	  <tr>
	    <td class="Big"><span class="big3"> 采购单编辑</span>
	    </td>
	  </tr>
	</table>
	<br>

	<table class="tablestyle1">
  <html:form action="production.do"  method="post">
  <html:hidden property="p" value="save"/>
  <html:hidden property="id"/>
	   <tr>
	    <td nowrap  class="TableHeader" colspan="4" align="left">
	      采购单基本信息:
	    </td>
	    </tr>
	   <tr>
	    <td nowrap class="TableData">采购单编号: </td>
	    <td nowrap class="TableData" colspan="3">
	       <html:text property="stockId"  size="20" maxlength="100" />
	    </td>
	    </tr>
	    <tr>
	     <td nowrap class="TableData">负责人: </td>
	    <td nowrap class="TableData">
	         <html:select property="employeeId">
			<html:option value="---请选择---"></html:option>
			<html:options collection="employees" property="id" labelProperty="employeeName"/>
		</html:select>
	    </td>
	     <td nowrap class="TableData">采购日期: </td>
	    <td nowrap class="TableData">
	      <html:text property="createDate"  size="20" maxlength="100" />
	       <img src="images/calendar.gif"  ondblclick="setday(createDate)"/>
	    </td>
	    </tr>
	     <tr>
	     <td nowrap class="TableData">产品名称: </td>
	    <td nowrap class="TableData">
	         <html:select property="clientProductionId">
			<html:option value="---请选择---"></html:option>
			<html:options collection="clientProductions" property="id" labelProperty="clientProductionname"/>
			</html:select>
	    </td>
	 	<td nowrap class="TableData">数量: </td>
		    <td nowrap class="TableData" >
	        <html:text property="amount"  size="20" maxlength="100" />
    	</td>
    	</tr>
	    <tr>
	     <td nowrap class="TableData">总价: </td>
	    <td nowrap class="TableData" colspan="3">
	        <html:text property="sum"  size="20" maxlength="100" />
	    </td>
	  
	     <td nowrap class="TableData">付款日期: </td>
	    <td nowrap class="TableData" colspan="3">
	        <html:text property="payDate"  size="20" maxlength="100" />
	       <img src="images/calendar.gif"  ondblclick="setday(payDate)"/>
	    </td>
	   </tr>
	     <tr>
	     <td nowrap class="TableData">状态: </td>
	    <td nowrap class="TableData" colspan="3">
	        <html:text property="state"  size="20" maxlength="100" />
	    </td>
	  
	     <td nowrap class="TableData">生产方: </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>
	    </td>
	   </tr>
	 
	 
	 
	 
	 	<tr>
		    <td nowrap  class="TableControl" colspan="4" align="center">
		    	<html:submit styleClass="BigButton">确定</html:submit>
		    	<html:reset styleClass="BigButton">重添</html:reset>
		    </td>
	   </tr>
  </html:form>
</table>
</body>
</html:html>

⌨️ 快捷键说明

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