diff options
author | Frédéric Menou <frederic.menou@fretlink.com> | 2016-12-08 10:19:15 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2022-05-17 18:01:51 +0200 |
commit | a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 (patch) | |
tree | adf3186fdccaeef19151026cdfbd38a530cf9ecb /specification/src/Text/Edifact/D96A/Simples/S8101.hs | |
download | edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.gz edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.zst edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.zip |
Diffstat (limited to 'specification/src/Text/Edifact/D96A/Simples/S8101.hs')
-rw-r--r-- | specification/src/Text/Edifact/D96A/Simples/S8101.hs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S8101.hs b/specification/src/Text/Edifact/D96A/Simples/S8101.hs new file mode 100644 index 0000000..947f1ae --- /dev/null +++ b/specification/src/Text/Edifact/D96A/Simples/S8101.hs | |||
@@ -0,0 +1,36 @@ | |||
1 | {-# LANGUAGE OverloadedStrings #-} | ||
2 | |||
3 | ---- Machine generated code. | ||
4 | ---- Output of edi-parser-scaffolder | ||
5 | |||
6 | module Text.Edifact.D96A.Simples.S8101 | ||
7 | ( simple8101 | ||
8 | ) where | ||
9 | |||
10 | import Text.Edifact.Parsing | ||
11 | import Text.Edifact.Types (Value) | ||
12 | |||
13 | -- | Derived from this specification: | ||
14 | -- | ||
15 | -- > 8101 Transit direction, coded | ||
16 | -- > | ||
17 | -- > Desc: Identification of the point of origin and point of direction. | ||
18 | -- > | ||
19 | -- > Repr: an..3 | ||
20 | -- > | ||
21 | -- > BS Buyer to seller | ||
22 | -- > Self explanatory. | ||
23 | -- > SB Seller to buyer | ||
24 | -- > Self explanatory. | ||
25 | -- > SC Subcontractor to seller | ||
26 | -- > Self explanatory. | ||
27 | -- > SD Seller to drop ship designated location | ||
28 | -- > Self explanatory. | ||
29 | -- > SF Seller to freight forwarder | ||
30 | -- > Self explanatory. | ||
31 | -- > SS Seller to subcontractor | ||
32 | -- > Self explanatory. | ||
33 | -- > ZZZ Mutually defined | ||
34 | -- > Self explanatory. | ||
35 | simple8101 :: Parser Value | ||
36 | simple8101 = simple "8101" (alphaNumeric `upTo` 3) | ||