aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Simples/S4233.hs
diff options
context:
space:
mode:
authorFrédéric Menou <frederic.menou@fretlink.com>2016-12-08 10:19:15 +0200
committerIsmaël Bouya <ismael.bouya@fretlink.com>2022-05-17 18:01:51 +0200
commita9d77a20008efe82862cc1adbfa7a6d4f09f8ff7 (patch)
treeadf3186fdccaeef19151026cdfbd38a530cf9ecb /specification/src/Text/Edifact/D96A/Simples/S4233.hs
downloadedi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.gz
edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.tar.zst
edi-parser-a9d77a20008efe82862cc1adbfa7a6d4f09f8ff7.zip
Release code as open sourceHEADmaster
Diffstat (limited to 'specification/src/Text/Edifact/D96A/Simples/S4233.hs')
-rw-r--r--specification/src/Text/Edifact/D96A/Simples/S4233.hs90
1 files changed, 90 insertions, 0 deletions
diff --git a/specification/src/Text/Edifact/D96A/Simples/S4233.hs b/specification/src/Text/Edifact/D96A/Simples/S4233.hs
new file mode 100644
index 0000000..f288b86
--- /dev/null
+++ b/specification/src/Text/Edifact/D96A/Simples/S4233.hs
@@ -0,0 +1,90 @@
1{-# LANGUAGE OverloadedStrings #-}
2
3---- Machine generated code.
4---- Output of edi-parser-scaffolder
5
6module Text.Edifact.D96A.Simples.S4233
7 ( simple4233
8 ) where
9
10import Text.Edifact.Parsing
11import Text.Edifact.Types (Value)
12
13-- | Derived from this specification:
14--
15-- > * 4233 Marking instructions, coded
16-- >
17-- > Desc: Code indicating instructions on how specified packages or
18-- > physical units should be marked.
19-- >
20-- > Repr: an..3
21-- >
22-- > 1 Do not mark suppliers company name
23-- > Self explanatory.
24-- > 2 Mark customers company name
25-- > Self explanatory.
26-- > 3 Mark customers references
27-- > Self explanatory.
28-- > 4 Mark additionally customers article description
29-- > Self explanatory.
30-- > 5 Mark exclusively customers article description
31-- > Self explanatory.
32-- > 6 Mark packages dimensions
33-- > Self explanatory.
34-- > 7 Mark net weight
35-- > Self explanatory.
36-- > 8 Mark gross weight
37-- > Self explanatory.
38-- > 9 Mark tare weight
39-- > Self explanatory.
40-- > 10 Mark batch number
41-- > Self explanatory.
42-- > 11 Mark article number customer
43-- > Self explanatory.
44-- > 12 Mark running number of packages
45-- > Self explanatory.
46-- > 13 Mark date of production
47-- > Self explanatory.
48-- > 14 Mark expiry date
49-- > Self explanatory.
50-- > 15 Mark supplier number
51-- > Self explanatory.
52-- > 16 Buyer's instructions
53-- > Markings as specified by the buyer.
54-- > 17 Seller's instructions
55-- > Markings as specified by the seller.
56-- > 18 Carrier's instructions
57-- > Markings as specified by carrier.
58-- > 19 Legal requirements
59-- > Markings as specified by law.
60-- > 20 Industry instructions
61-- > Markings as specified by industry.
62-- > 21 Line item only
63-- > Exclusive reference markings for this line.
64-- > 22 Premarked by buyer
65-- > Self explanatory.
66-- > 23 Entire shipment
67-- > Markings refer to the entire shipment.
68-- > 24 Shipper assigned
69-- > Markings to identify a shipment, package or carton as
70-- > assigned by shipper.
71-- > 25 Shipper assigned roll number
72-- > Markings to identify a roll as assigned by the shipper.
73-- > 26 Shipper assigned skid number
74-- > Markings used to identify a skid as assigned by shipper.
75-- > 27 Uniform Code Council (UCC) format
76-- > Markings according to UCC format are required. System of
77-- > coding products where by each item/multipack case type is
78-- > uniquely identified. A unique manufacturer Id is assigned
79-- > by the UCC.
80-- > 28 Mark free text
81-- > Description to be provided.
82-- > + 29 Mark case number
83-- > Case numbers to be used for marking.
84-- > + 30 Mark serial shipping container code
85-- > Requests the marking of the serial shipping container
86-- > code to the transport container or packaging.
87-- > ZZZ Mutually defined
88-- > Self explanatory.
89simple4233 :: Parser Value
90simple4233 = simple "4233" (alphaNumeric `upTo` 3)