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

📄 ware.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" %>
<jsp:directive.page import="com.company.struts.form.returnmoney.ConsignBillForm"/>
<jsp:directive.page import="com.company.struts.form.returnmoney.WareMoneyBillForm" />
<jsp:directive.page import="com.company.struts.form.XsReturnMoney;"/>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
  <head>
    <html:base />
    <title>Ware.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 bgcolor="#CFFFF" >
  	<%
  		XsReturnMoney xrm=(XsReturnMoney)request.getAttribute("xrmform");
  		ConsignBillForm xbform =(ConsignBillForm)request.getAttribute("consignBillForm"); 
		WareMoneyBillForm wmform =(WareMoneyBillForm)request.getAttribute("wareMoneyBillForm");	
    %>
 	<h1 align="center">回款核销(<%=xrm.getCusCode() %>)</h1>
 	<html:form action="/wareTrue.do">
 	<%--<h3>核销日期:<html:text property="wareDate"></html:text></h3>--%><br>
 	<h3>发货单:</h3>
 	<table  border="1" id="consignTable">
 		<tr height="10" bgcolor="#CDDDD">
 			<td>行值</td>	
 			<td>选中</td>
 			<td>单据日期</td>
 			<td>单据号</td>
 			<td>货物名称</td>
 			<td>金额</td>
 			<td>未核销金额</td>
 			<td>本次核销金额</td>
 			<td>是否销尽</td>
 		</tr>
 		<logic:iterate id="c" name="consignBillForm">
 		<tr height="10">
 			<td><html:text property="c_rowvalue" value="${c.c_rowvalue}" style="width:100px"></html:text> </td>
 			<td><html:checkbox property="c_selected"></html:checkbox> </td>
 			<td><html:text property="c_billDate" value="${c.c_billDate}" style="width:100px"></html:text></td>
 			<td><html:text property="c_billCode" value="${c.c_billCode}" style="width:100px"></html:text></td>
 			<td><html:text property="c_warename" value="${c.c_warename}" style="width:100px"></html:text></td>
 			<td><html:text property="c_money" value="${c.c_money}" style="width:100px"></html:text></td>
 			<td><html:text property="c_notWareMoney" value="${c.c_notWareMoney}" style="width:100px"></html:text></td>
 			<td><html:text property="c_nowWareMoney"  style="width:100px"></html:text></td>
 			<td><html:text property="c_sellAll" value="${c.c_sellAll}" style="width:100px"></html:text></td>
 		</tr>
 		</logic:iterate>
 		<tr height="10">
 			<td>合计</td>	
 			<td colspan="8"></td>
 			
 		</tr>
 		
 	</table>
 	<hr align="center" >
 	<h3 >回款单:</h3>
 	<br>
 	<table border="1" id="waremoneyTable">
 		<tr height="10" bgcolor="#CDDDD">
 			<td>行值</td>	
 			<td>选中</td>
 			<td>单据日期</td>
 			<td>单据号</td>
 			<td>金额</td>
 			<td>未核销金额</td>
 			<td>本次核销金额</td>
 			
 		</tr>
 		<%--<logic:iterate id="w" name="wareMoneyBillForm">
 		<tr height="10">
 			<td><html:text property="w_rowvalue" value="${w.rowvalue}" style="width:100px"></html:text> </td>	
 			<td><html:checkbox property="w_selected"></html:checkbox> </td>
 			<td><html:text property="w_billDate" value="${w.billDate}" style="width:100px"></html:text></td>
 			<td><html:text property="w_billCode" value="${w.billCode}" style="width:100px"></html:text></td>
 			<td><html:text property="w_money" value="${w.money}" style="width:100px"></html:text></td>
 			<td><html:text property="w_notwaremoney" value="${w.notwaremoney}" style="width:100px"></html:text></td>
 			<td><html:text property="w_nowwaremoney"  style="width:100px"></html:text></td>
 		</tr>
 		</logic:iterate>
 		
 		--%><tr height="10">
 			<td>合计</td>	
 			<td colspan="8"></td>
 		</tr>
 	</table>
 	<h3 align="justify">
 	<html:submit value="核销" />
 	<html:reset  value="取消" />
 	</h3>
 	
 	</html:form>
  </body>
</html:html>

⌨️ 快捷键说明

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