jiazx0107@163.com
2023-11-06 69cd9f59a0fabf12f8c9147fcba7f69817a870b3
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
<!DOCTYPE html>
<html lang='zh-cn'>
<head>
    <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'>
    <title>入库过磅单</title>
    <style>
        body{text-align:center;padding:10px}.tit{margin:10px;font-size:24px;font-family:'宋体';padding-top:15px;}.div-tit{padding-top:10px}table{width:100%;border-right:1px solid;border-bottom:1px solid;font-size:14px}table td{border-left:1px solid;border-top:1px solid;height:38px}.sp1{width:33%;float:left;padding-bottom:10px}.sp2{width:33%;float:left;text-align:center}
    </style>
</head>
 
<body>
<h1 class='tit'>billTitle</h1>
<div class='div-tit'><span class='sp1'>登记时间:registerTime</span><span class='sp1'>完成时间:completeTime</span><span class='sp1'>单号:serId</span></div>
<table cellspacing='0' cellpadding='0'>
    <tr>
        <td>发货单位</td>
        <td>customerName</td>
        <td colspan='2'>收货单位</td>
        <td>deptName</td>
    </tr>
    <tr>
        <td>粮食品种</td>
        <td>foodVariety</td>
        <td colspan='2'>装卸仓库</td>
        <td>depotName</td>
    </tr>
    <tr>
        <td width='12.5%'>粮食产地</td>
        <td width='37.5%'>foodLocation</td>
        <td rowspan="5" width='3.75%' style="writing-mode: tb;">承运人信息</td>
        <td width='8.75%'>司机姓名</td>
        <td width='37.5%'>driverName</td>
    </tr>
    <tr>
        <td>毛重(KG)</td>
        <td>fullWeight</td>
        <td>车船号</td>
        <td>plateNum</td>
    </tr>
    <tr>
        <td>皮重(KG)</td>
        <td>emptyWeight</td>
        <td>身份证号</td>
        <td>userNumberId</td>
    </tr>
    <tr>
        <td>净重(KG)</td>
        <td>netWeight</td>
        <td>联系电话</td>
        <td>userContact</td>
    </tr>
    <tr>
        <td>结算重量(KG)</td>
        <td>settleWeight</td>
        <td>住址</td>
        <td>userAddress</td>
    </tr>
    <tr>
        <td>备注</td>
        <td colspan='6'>remark</td>
    </tr>
</table>
<div class='div-tit'><span class='sp2'>司磅员:</span><span class='sp2'>保管员:</span><span class='sp2'>承运人:</span></div>
</body>
</html>