-
Notifications
You must be signed in to change notification settings - Fork 0
/
bol-template.typ
74 lines (49 loc) · 1.17 KB
/
bol-template.typ
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
// Author: Daniel Rode
// Init: 28 Nov 2023
// Updated: -
#set page("us-letter")
#set page(
margin: (
rest: 1cm,
)
)
#set text(font: "DejaVu Sans Mono")
#let bol_data = yaml("./tmp-bol.yaml")
= BILL OF LADING
#line(length: 100%, stroke: 0.5pt)
#v(10pt)
Order ID(s): #bol_data.order_ids
Pickup Date: `_____________________________`
== Ship From
Colorado Food Enterprises \
3645 Wazee St, Denver, CO 80216
== Deliver To
#for dest in bol_data.destinations [
- #dest
]
== Currier
Pops Transport
== Cargo
#table(
columns: (auto, auto, 1fr, auto),
[*Order \#*], [*Item Code*], [*Description*], [*Quantity*],
// Display array items as cells
..for i in bol_data.cargo {
for j in i {
([#j],)
}
}
)
Approximate Weight: Up to 90 ounces per box
Number of boxes: #bol_data.boxes
== Quality Assurance
Vehicle Internal Temperature: `_________________________`
#v(8pt)
#set text(14pt)
Temp-Taker Signature: `___________________________________` Date: `__________`
#set text(14pt)
#align(bottom)[
Shipper Signature: `_______________________________________` Date: `__________`
#v(8pt)
Currier Signature: `_______________________________________` Date: `__________`
]