printApplyList.jsp
1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
.apply{
border:1px solid black;
border-collapse: collapse;
width:100%;
}
.apply tr{
border:1px solid black;
}
.apply tr td,th{
border:1px solid black;
padding: 5px 20px;
text-align: center;
}
</style>
<title>打印申请单</title>
</head>
<body>
<table class="apply">
<thead>
<tr>
<th>序号</th>
<th>提货单号</th>
<th>会员号</th>
<th>藏品代码</th>
<th>藏品名称</th>
<th>提货方式</th>
<th>提货数量</th>
<th>提货时间</th>
<th>提货状态</th>
<th>封装方式</th>
<th>收件人</th>
<th>联系电话</th>
<th>收件地址</th>
</tr>
</thead>
<tbody>
<c:forEach var="applyInfo" varStatus="status" items="${applyInfoList}">
<tr>
<td>${status.index + 1}</td>
<td>${applyInfo.opStation }</td>
<td>${applyInfo.fundAccount }</td>
<td>${applyInfo.otcCode }</td>
<td>${applyInfo.otcName }</td>
<td>${applyInfo.pickingType }</td>
<td>${applyInfo.occurAmount }</td>
<td>${applyInfo.pickingDate }</td>
<td>${applyInfo.pickStatusName }</td>
<td>${applyInfo.packType }</td>
<td>${applyInfo.pickingName }</td>
<td>${applyInfo.phoneCode }</td>
<td>${applyInfo.expressAdress }</td>
</tr>
</c:forEach>
</tbody>
</table>
</body>
</html>