-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpacking_print.html
145 lines (145 loc) · 4.53 KB
/
packing_print.html
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!--START: PAGEHEAD-->
<!doctype html>
<html>
<head>
<title>[company]</title>
<link rel="stylesheet" href="/assets/templates/common-html5/css/layout.css" type="text/css" media="print" />
</head>
<body>
<!--END: PAGEHEAD-->
<!--START: pagebreak-->
<div style="page-break-after: always;">
<!--END: pagebreak-->
<section id="packingPrint">
<!------ START: Confirmation ------>
<!--START: order_details-->
<div class="customerInfoBlock">
<!--start customer info block-->
<div class="left-col">
<!--START: invoicelogo-->
<div class="invoice-logo"><img src="../[invoicelogo]" alt="[company]" /></div>
<!--END: invoicelogo-->
<p>[company]</p>
<p>[address1]</p>
<!--START: address2-->
<p>[address2]</p>
<!--END: address2-->
<p>[city], [state] [zip]</p>
</div>
<!--end customer info block-->
<!--start invoice info block-->
<div class="right-col">
<div class="label">Order Date:</div>
<div class="text">[odate_month]/[odate_day]/[odate_year]</div>
<div class="clear"></div>
<div class="label">Order Number #:</div>
<div class="text">[invoicenum_prefix][invoicenum]</div>
<div class="clear"></div>
<!--START: salesperson-->
<div class="label">Sales Person:</div>
<div class="text">[salesperson]</div>
<div class="clear"></div>
<!--END: salesperson-->
</div>
<!--end invoice info block-->
<div class="clear"></div>
</div>
<div class="billingBlock">
<!--start billing block-->
<div class="left-col">
<p><strong>BILLING ADDRESS</strong></p>
<p>[ofirstname] [olastname]</p>
<!--START: ocompany-->
<p>[ocompany]</p>
<!--END: ocompany-->
<p>[oaddress]</p>
<!--START: oaddress2-->
<p>[oaddress2]</p>
<!--END: oaddress2-->
<p>[ocity], [ostate] [ozip] - [ocountry]</p>
<!--START: ophone-->
<p>[ophone]</p>
<!--END: ophone-->
<!--START: oemail-->
<p>[oemail]</p>
<!--END: oemail-->
</div>
<!--end billing block-->
<!--start shipping block-->
<div class="right-col">
<p><strong>SHIPPING ADDRESS</strong></p>
<!--START: shipping_address-->
<p>[oshipfirstname] [oshiplastname]</p>
<!--START: oshipcompany-->
<p>[oshipcompany]</p>
<!--END: oshipcompany-->
<p>[oshipaddress]</p>
<!--START: oshipaddress2-->
<p>[oshipaddress2]</p>
<!--END: oshipaddress2-->
<p>[oshipcity], [oshipstate] [oshipzip] - [oshipcountry]</p>
<!--END: shipping_address-->
</div>
<!--end shipping block-->
<div class="clear"></div>
</div>
<div class="shippingInfoBlock">
<!--START: shipping_info-->
<div class="label">Shipping Method:</div>
<div class="text">[oshipmethod] ([totalweight]lbs.)</div>
<div class="clear"></div>
<!--START: trackingcode-->
<div class="label">Tracking Number:</div>
<div class="text">[trackingcode]</div>
<div class="clear"></div>
<!--END: trackingcode-->
<!--START: oshippeddate-->
<div class="label">Shipped on:</div>
<div class="text">[oshippeddate]</div>
<div class="clear"></div>
<!--END: oshippeddate-->
<!--END: shipping_info-->
</div>
<div class="right">
<div class="label">Total Items:</div>
<div class="text">[numberofitems]</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
<!--END: order_details-->
<div class="invoiceTable">
<div class="titles2">
<div class="invoice-id">Item ID</div>
<div class="invoice-items">Descriptions and Options</div>
<div class="invoice-qty">Qty</div>
<div class="clear"></div>
</div>
<!--START: items-->
<div class="row">
<div class="invoice-id">[id]</div>
<div class="invoice-items">[itemname]<!--START: warehouse_location--><br />
[warehouse_location] [warehouse_aisle] [warehouse_bin] [warehouse_custom]<!--END: warehouse_location--></div>
<div class="invoice-qty">[numitems]</div>
<div class="clear"></div>
</div>
<!--END: items-->
<div class="orderDetailsBlock">
<div class="left-col">
<!--START: ocomment-->
<div class="ocomment"><strong>Order Comments:</strong>
<p>[ocomment]</p>
</div>
<!--END: ocomment-->
<!--START: invoice_terms-->
<div class="invoice_terms">[invoice_terms]</div>
<!--END: invoice_terms-->
</div>
</div>
<div class="clear"></div>
</div>
<!------ END: Confirmation ------>
<div class="clear"></div>
</section>
</div>
</body>
</html>