📄 consigninvoice.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" %>
<%@ include file="../../publicModel.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>consignInvoice.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 align="center">发票核销情况</h2>
<table width="100%" height="139" border="1" align="center" cellSpacing=0 cellPadding=2 id="PowerTable">
<tr width=100% bgcolor=#C4E6DE >
<td colspan="11">发货单号:${consignC}</td>
</tr>
<tr width=100% align=middle bgcolor=#C4E6DE >
<td rowspan="2">货物编码</td>
<td rowspan="2">货物名称 </td>
<td rowspan="2">规格型号</td>
<td rowspan="2">单价</td>
<td rowspan="2">实收数量</td>
<td colspan="6"><div align="center">发票</div></td>
</tr>
<tr width=100% align=middle bgcolor=#C4E6DE >
<td>发票号</td>
<td>核销数量</td>
<td>含税单价</td>
<td>含税金额</td>
<td>无税单价</td>
<td>无税金额</td>
</tr>
<logic:iterate id="invoice" name="invoiceList">
<tr>
<td>${invoice[0]}</td>
<td>${invoice[1]}</td>
<td>${invoice[2]}</td>
<td>${invoice[3]}</td>
<td>${invoice[4]}</td>
<td>${invoice[5]}</td>
<td>${invoice[6]}</td>
<td>${invoice[7]}</td>
<td>${invoice[8]}</td>
<td>${invoice[9]}</td>
<td>${invoice[10]}</td>
</tr>
</logic:iterate>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -