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

📄 quitware.jsp

📁 关于网上汽车销售系统的详细编程项目实战实例
💻 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>quitWare.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>
  <h2>退货单编制</h2>
    <html:form action="/quitWareAdd.do">
    <table border="1">
    <tr>
    <td>
<%--    <input type="checkbox" value="1">现销</input>--%>
<%--    <input type="checkbox" value="2">赊销</input>--%>
		<html:radio property="consignFlag" value="0">现销</html:radio>
		<html:radio property="consignFlag" value="1">佘销</html:radio>
<%--    <input type="checkbox" value="1">退货单</input>--%>
		<html:checkbox property="billType" value="1">退货单</html:checkbox>
   </td>
  </tr>
    <tr>
    <td>
    	<table border="0">
    	<tr>
    	<td>退货单ID<br></td>
		    <td><html:text property="consignBillMainId"/><br></td>

		    <td>退货单号<br></td>
		    <td><html:text property="consignCode"/><br></td>
		    <td>发货单号<br></td>
		    <td>
		    	<html:select property="returnSource">
		    	<html:option value="">--请选择--</html:option>
		    	<html:options collection="listall" labelProperty="consignCode" property="consignCode"></html:options>
		    	</html:select>
		    <br></td>
		 </tr>
		 <tr>
		 	<td>销售类型<br></td>
		 	<td>
		 		<html:select property="sellTypeCode">
		 		<html:option value="">--请选择--</html:option>
		    	<html:options collection="listall" labelProperty="sellTypeCode" property="sellTypeCode"/>
		    	</html:select>
		 	<br></td>
		 	<td>客户名称<br></td>
		 	<td>
		 		<html:select property="cusCode">
		 		<html:option value="">--请选择--</html:option>
		    	<html:options collection="listall" labelProperty="cusCode" property="cusCode"/>
		    	</html:select>
		 	<br></td>
		 	<td>部门<br></td>
		 	<td>
		 		<html:select property="deptCode">
		 		<html:option value="">--请选择--</html:option>
		    	<html:options collection="listall" labelProperty="deptCode" property="deptCode"/>
		    	</html:select>
		 	<br></td>
		 </tr>
		  <tr>
		 	<td>销售员<br></td>
		 	<td>
		 		<html:select property="personCode">
		 		<html:option value="">--请选择--</html:option>
		    	<html:options collection="listall" labelProperty="personCode" property="personCode"/>
		    	</html:select>
		 	<br></td>
		 	<td>币种<br></td>
		 	<td>
		 		<html:select property="foreignCurrCode">
		 		<html:option value="">--请选择--</html:option>
		    	<html:option value="RMB">RMB</html:option>
		    	<html:option value="Dol">dollars</html:option>
		    	</html:select>
		 	<br></td>
		 	<td>汇率<br></td>
		 	<td>
		 	<html:text property="exchRate"></html:text>
		 	<br></td>
		 </tr>
		   <tr>
		 	<td>退货人<br></td>
		 	<td><html:text property="fetchPerson"/><br></td>

		 	<td>备注<br></td>
		 	<td><html:text property="remark"/><br></td>
		 	<td>退货日期<br></td>
		 	<td><input type="text" name="consignDate"/></td>
		 </tr>
		 <tr>
		 	<td>制单人</td>
		 	<td><html:text property="maker"/></td>
		 	<td>审核人</td>
		 	<td><html:text property="checker"/></td>
		 </tr>
    	 </table>
     <br></td>
    </tr>
    <td><html:submit value="提交"></html:submit>
    注:该页面填写的是退货单的信息,当点击“提交”后,到所退货物的详细信息
    <br></td>
 </table>
    </html:form>
    <html:form action="/quitWareListView.do">
    	<table border="1">
    		<tr>
    		<td>如果不需要添加退货单,只要操作所退货物。点击<html:submit value="操作所退货物"/></td>
    		</tr>
    	</table>
    </html:form>
  </body>
</html:html>

⌨️ 快捷键说明

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