print3.html
3 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>出库单打印(三联单)</title>
</head>
<body>
<div>
<div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="15" colspan="3"><h3 style=" font-weight:bold;text-align:center;letter-spacing: 5px;font-size:20px;">${rOrgName}物资出库单</h3></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="margin-top: 5px;">
<tr>
<td width="21%" height="15">领用科室:${deptName}</td>
<td width="17%" height="15">出库日期:${outTime}</td>
<td width="27%" height="15">出库单号:${outNo}</td>
</tr>
<tr>
<td width="21%" height="15">拣货单号:${pickNo}</td>
<td width="17%" height="15">送货单号:${sendNo}</td>
<td width="27%" height="15">单位:元</td>
</tr>
<tr>
</tr>
</table>
</div>
<div>
<table style="margin-top: 10px;border-collapse:collapse;border-spacing:0;font-size: 14px;">
<tr style="height: 18px;">
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;">序号</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;" width="200">产品名称</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;" width="150">规格</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;" width="40">单位</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;" width="50">数量</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;" width="80">单价</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-top:1px solid #000000;" width="90">金额</td>
<td style="background: #eaeaea;text-align: center;border-left:1px solid #000000;border-right:1px solid #000000;border-top:1px solid #000000;" width="130">财务分类</td>
</tr>
${tableContent}
</table>
</div>
<div>
${afterTable
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr height="20px;">
<td width="25%" align="left"></td>
<td width="25%" align="left"></td>
<td width="21%" align="left"></td>
<td width="28%" align="left">合计金额:${totalPrice}</td>
</tr>
<tr height="20px;">
<td width="25%" align="left">制单人:${userName}</td>
<td width="25%" align="left">会计:</td>
<td width="21%" align="left">保管:</td>
<td width="28%" align="left">经办人:</td>
</tr>
</table>
}
</div>
</div>
</body>
</html>