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/S8022.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/S8022.hs')
-rw-r--r-- | specification/src/Text/Edifact/D96A/Simples/S8022.hs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S8022.hs b/specification/src/Text/Edifact/D96A/Simples/S8022.hs new file mode 100644 index 0000000..b790d35 --- /dev/null +++ b/specification/src/Text/Edifact/D96A/Simples/S8022.hs | |||
@@ -0,0 +1,22 @@ | |||
1 | {-# LANGUAGE OverloadedStrings #-} | ||
2 | |||
3 | ---- Machine generated code. | ||
4 | ---- Output of edi-parser-scaffolder | ||
5 | |||
6 | module Text.Edifact.D96A.Simples.S8022 | ||
7 | ( simple8022 | ||
8 | ) where | ||
9 | |||
10 | import Text.Edifact.Parsing | ||
11 | import Text.Edifact.Types (Value) | ||
12 | |||
13 | -- | Derived from this specification: | ||
14 | -- | ||
15 | -- > 8022 Freight and charges | ||
16 | -- > | ||
17 | -- > Desc: Plain language statement describing freight and other | ||
18 | -- > charges. | ||
19 | -- > | ||
20 | -- > Repr: an..26 | ||
21 | simple8022 :: Parser Value | ||
22 | simple8022 = simple "8022" (alphaNumeric `upTo` 26) | ||