line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::EDI::CodeList::SequenceIdentifierSourceCode; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
8
|
use base 'Business::EDI::CodeList'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
207
|
|
4
|
|
|
|
|
|
|
my $VERSION = 0.02; |
5
|
5
|
|
|
5
|
0
|
19
|
sub list_number {1159;} |
6
|
|
|
|
|
|
|
my $usage = 'B'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
# 1159 Sequence identifier source code [B] |
9
|
|
|
|
|
|
|
# Desc: Code specifying the source of a sequence identifier. |
10
|
|
|
|
|
|
|
# Repr: an..3 |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
my %code_hash = ( |
13
|
|
|
|
|
|
|
'1' => [ 'Broadcast 1', |
14
|
|
|
|
|
|
|
'Report from workstation 1.' ], |
15
|
|
|
|
|
|
|
'2' => [ 'Broadcast 2', |
16
|
|
|
|
|
|
|
'Report from workstation 2.' ], |
17
|
|
|
|
|
|
|
'3' => [ 'Manufacturer sequence number', |
18
|
|
|
|
|
|
|
"The manufacturer's plant requesting the delivery of the item has allocated the sequence number." ], |
19
|
|
|
|
|
|
|
'4' => [ 'Manufacturer production sequence number', |
20
|
|
|
|
|
|
|
'The plant requesting the delivery of an item assigns a number indicating the sequence of the finished article.' ], |
21
|
|
|
|
|
|
|
'5' => [ 'Transmission sequence', |
22
|
|
|
|
|
|
|
'The positional sequence when transmitted.' ], |
23
|
|
|
|
|
|
|
'6' => [ 'Structure sequence', |
24
|
|
|
|
|
|
|
'The positional sequence in a message structure as published in a particular UN directory.' ], |
25
|
|
|
|
|
|
|
); |
26
|
5
|
|
|
5
|
0
|
13
|
sub get_codes { return \%code_hash; } |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
1; |