aboutsummaryrefslogtreecommitdiffhomepage
path: root/specification/src/Text/Edifact/D96A/Segments/PRI.hs
blob: 09c48345fe57e25c321ae792a7732196952e63fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{-# LANGUAGE OverloadedStrings #-}

---- Machine generated code.
---- Output of edi-parser-scaffolder

module Text.Edifact.D96A.Segments.PRI
  ( -- * Definition
    segmentPRI
    -- * Dependencies
  , compositeC509
  , simple5213
  ) where

import           Text.Edifact.D96A.Composites (compositeC509)
import           Text.Edifact.D96A.Simples    (simple5213)

import           Text.Edifact.Parsing
import           Text.Edifact.Types           (Value)

-- | Derived from this specification:
--
-- >       PRI    PRICE DETAILS
-- >
-- >       Function: To specify price information.
-- >
-- > 010   C509  PRICE INFORMATION                              C
-- >       5125   Price qualifier                               M  an..3
-- >       5118   Price                                         C  n..15
-- >       5375   Price type, coded                             C  an..3
-- >       5387   Price type qualifier                          C  an..3
-- >       5284   Unit price basis                              C  n..9
-- >       6411   Measure unit qualifier                        C  an..3
-- >
-- > 020   5213  SUB-LINE PRICE CHANGE, CODED                   C  an..3
--
-- Dependencies: 'compositeC509', 'simple5213'.
segmentPRI :: Parser Value
segmentPRI =
  segment "PRI"
    [ "010" .@ optional  compositeC509
    , "020" .@ optional  simple5213
    ]