aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Segments/CPS.hs
diff options
context:
space:
mode:
Diffstat (limited to 'specification/src/Text/Edifact/D96A/Segments/CPS.hs')
-rw-r--r--specification/src/Text/Edifact/D96A/Segments/CPS.hs42
1 files changed, 42 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Segments/CPS.hs b/specification/src/Text/Edifact/D96A/Segments/CPS.hs
new file mode 100644
index 0000000..0ce27b5
--- /dev/null
+++ b/specification/src/Text/Edifact/D96A/Segments/CPS.hs
@@ -0,0 +1,42 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D96A.Segments.CPS
7 ( -- * Definition
8 segmentCPS
9 -- * Dependencies
10 , simple7075
11 , simple7164
12 , simple7166
13 ) where
14
15import Text.Edifact.D96A.Simples (simple7075, simple7164, simple7166)
16
17import Text.Edifact.Parsing
18import Text.Edifact.Types (Value)
19
20-- | Derived from this specification:
21--
22-- > CPS CONSIGNMENT PACKING SEQUENCE
23-- >
24-- > Function: To identify the sequence in which physical packing is
25-- > presented in the consignment, and optionally to
26-- > identify the hierarchical relationship between packing
27-- > layers.
28-- >
29-- > 010 7164 HIERARCHICAL ID. NUMBER M an..12
30-- >
31-- > 020 7166 HIERARCHICAL PARENT ID. C an..12
32-- >
33-- > 030 7075 PACKAGING LEVEL, CODED C an..3
34--
35-- Dependencies: 'simple7075', 'simple7164', 'simple7166'.
36segmentCPS :: Parser Value
37segmentCPS =
38 segment "CPS"
39 [ "010" .@ mandatory simple7164
40 , "020" .@ optional simple7166
41 , "030" .@ optional simple7075
42 ]