Skip to content

Commit b56a54c

Browse files
authored
Create shipment.markdown
1 parent 4463f3b commit b56a54c

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed

_documentation/shipment.markdown

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
---
2+
title: Shipments
3+
layout: default_toc
4+
---
5+
6+
# Shipment
7+
8+
Shipments are children of [transactions](/documentation/transactions.html) which record movement of material.
9+
10+
11+
### shipment_id
12+
13+
primary key
14+
15+
### transaction_id
16+
17+
Foreign key ---> transaction
18+
19+
20+
21+
### container_id
22+
23+
24+
Foreign key ---> container
25+
26+
27+
### packed_by_agent_id
28+
29+
30+
Foreign key ---> agent
31+
32+
The agent handling the material.
33+
34+
35+
### shipped_carrier_method
36+
37+
Foreign key ---> [ctshipped_carrier_method](https://arctos.database.museum/info/ctDocumentation.cfm?table=ctshipped_carrier_method)
38+
39+
### carriers_tracking_number
40+
41+
Identifier (ideally URL) provided by the carrier.
42+
43+
### shipped_date
44+
45+
Date
46+
47+
48+
### package_weight
49+
50+
text; include units as necessary
51+
52+
### hazmat_fg
53+
54+
yes/no
55+
56+
### insured_for_insured_value
57+
58+
Numeric, assume USD
59+
60+
### shipment_remarks
61+
62+
Elaborate here
63+
64+
### contents
65+
66+
Describe
67+
68+
### foreign_shipment_fg
69+
70+
yes/no
71+
72+
73+
### shipped_to_addr_id
74+
75+
Foreign key ---> agent_attribute
76+
77+
### shipped_from_addr_id
78+
79+
80+
Foreign key ---> agent_attribute
81+
82+
83+
### shipment_type
84+
85+
Foreign key ---> [ctshipment_type](https://arctos.database.museum/info/ctDocumentation.cfm?table=ctshipment_type)
86+
87+
88+
89+
## Edit this Documentation
90+
91+
92+
If you see something that needs to be edited in this document, you can create an issue using the link under the search widget at the top left side of this page, or you can edit directly [here](https://github.com/ArctosDB/documentation-wiki/edit/gh-pages/_documentation/shipment.markdown).

0 commit comments

Comments
 (0)