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/S8395.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/S8395.hs')
-rw-r--r-- | specification/src/Text/Edifact/D96A/Simples/S8395.hs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S8395.hs b/specification/src/Text/Edifact/D96A/Simples/S8395.hs new file mode 100644 index 0000000..16103c7 --- /dev/null +++ b/specification/src/Text/Edifact/D96A/Simples/S8395.hs | |||
@@ -0,0 +1,31 @@ | |||
1 | {-# LANGUAGE OverloadedStrings #-} | ||
2 | |||
3 | ---- Machine generated code. | ||
4 | ---- Output of edi-parser-scaffolder | ||
5 | |||
6 | module Text.Edifact.D96A.Simples.S8395 | ||
7 | ( simple8395 | ||
8 | ) where | ||
9 | |||
10 | import Text.Edifact.Parsing | ||
11 | import Text.Edifact.Types (Value) | ||
12 | |||
13 | -- | Derived from this specification: | ||
14 | -- | ||
15 | -- > 8395 Returnable package freight payment responsibility, coded | ||
16 | -- > | ||
17 | -- > Desc: To indicate responsibility for payment of return freight | ||
18 | -- > charges for packaging that is returnable. | ||
19 | -- > | ||
20 | -- > Repr: an..3 | ||
21 | -- > | ||
22 | -- > 1 Paid by customer | ||
23 | -- > Self explanatory. | ||
24 | -- > 2 Free | ||
25 | -- > Self explanatory. | ||
26 | -- > 3 Paid by supplier | ||
27 | -- > Self explanatory. | ||
28 | -- > ZZZ Mutually defined | ||
29 | -- > Self explanatory. | ||
30 | simple8395 :: Parser Value | ||
31 | simple8395 = simple "8395" (alphaNumeric `upTo` 3) | ||