1package Business::EDI::CodeList::ChargeCategoryCode;
2
3use base 'Business::EDI::CodeList';
4my $VERSION     = 0.02;
5sub list_number {5237;}
6my $usage       = 'B';
7
8# 5237  Charge category code                                    [B]
9# Desc: Code specifying the category of charges.
10# Repr: an..3
11
12my %code_hash = (
13'1' => [ 'All charges',
14    'All amounts calculated by the carrier in accordance with tariffs or in case of special events during the voyage (e.g. Rail - freights costs - additional costs).' ],
15'2' => [ 'Additional charges',
16    'Charges calculated by the carrier for specific events like re-weighting, re-loading, unexpected operations, services required during the voyage, etc.' ],
17'3' => [ 'Transport charges + additional charges',
18    'Transport charges plus Additional charges (e.g. for re- loading, re-weighting or unexpected operations) that must be precised in the payment conditions by the consignor (other charges must be taken in account by the consignee).' ],
19'4' => [ 'Basic freight',
20    'The basic freight payable on the cargo as per tariff.' ],
21'5' => [ 'Destination haulage charges',
22    'Haulage charges for transporting goods to the destination.' ],
23'6' => [ 'Disbursement',
24    "Sums paid out by ship's agent at a port and recovered from the carrier." ],
25'7' => [ 'Destination port charges',
26    'Charges payable at the port of destination.' ],
27'8' => [ 'Miscellaneous charges',
28    'Miscellaneous charges not otherwise categorized.' ],
29'9' => [ 'Transport charges up to a specified location',
30    'Transport charges to be paid by a specified party for a part of a voyage, i.e. up to a specified location.' ],
31'10' => [ 'Origin port charges',
32    'Charges payable at the port of origin.' ],
33'11' => [ 'Origin haulage charges',
34    'Haulage charges for the pickup of goods at origin.' ],
35'12' => [ 'Other charges',
36    'Unspecified charges.' ],
37'13' => [ 'Specific amount payable',
38    'Amount that the consignor agrees to be invoiced or to pay. This amount is part of the total charges applied to the consignment.' ],
39'14' => [ 'Transport costs (carriage charges)',
40    'Monetary amount calculated on the basis of the transport tariffs or contract eventually including charges or other costs.' ],
41'15' => [ 'All costs up to a specified location',
42    'All amounts to be paid by the consignor for a part of the voyage, i.e. up to a location that must be precised. (The remaining part of the voyage to be paid by the consignee) The amounts are calculated by the carrier in accordance with tariffs or in case of special events during the voyage (e.g. rail - freight costs - additional costs).' ],
43'16' => [ 'Weight/valuation charge',
44    'Code to indicate weight/valuation charges to be either wholly prepaid or wholly collect.' ],
45'17' => [ 'All costs',
46    'All cost elements.' ],
47'19' => [ 'Supply of certificate of shipment',
48    'Charges payable for the supply of a certificate of shipment.' ],
49'20' => [ 'Supply of consular formalities or certificate of origin',
50    'Charges payable for the supply of consular formalities or certificate of origin.' ],
51'21' => [ 'Supply of non-categorised documentation in paper form',
52    'Charges payable for the supply of one or more documents in paper form that are not otherwise categorised.' ],
53'22' => [ 'Supply of customs formalities, export',
54    'Charges payable for the supply of export customs formalities.' ],
55'23' => [ 'Supply of customs formalities, transit',
56    'Charges payable for the supply of transit customs formalities.' ],
57'24' => [ 'Supply of customs formalities, import',
58    'Charges payable for the supply of import customs formalities.' ],
59);
60sub get_codes { return \%code_hash; }
61
621;
63