eddy 0.8.1 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -4
- data/CHANGELOG.md +49 -1
- data/Gemfile.lock +8 -8
- data/README.md +2 -5
- data/data/code-lists/333.tsv +8 -0
- data/data/segments/amt.segment.yml +7 -0
- data/data/segments/bia.segment.yml +10 -0
- data/data/segments/cur.segment.yml +8 -0
- data/data/segments/dtm.segment.yml +1 -0
- data/data/segments/fob.segment.yml +8 -0
- data/data/segments/itd.segment.yml +13 -0
- data/data/segments/mtx.segment.yml +7 -0
- data/data/segments/n9.segment.yml +7 -0
- data/data/segments/per.segment.yml +13 -0
- data/data/segments/po1.segment.yml +6 -0
- data/data/segments/po3.segment.yml +13 -0
- data/data/segments/qty.segment.yml +10 -0
- data/data/segments/ref.segment.yml +1 -0
- data/data/segments/sac.segment.yml +4 -0
- data/data/segments/sch.segment.yml +7 -0
- data/data/segments/sdq.segment.yml +8 -0
- data/data/segments/txi.segment.yml +9 -0
- data/data/transaction_sets/810.edi.yml +93 -0
- data/data/transaction_sets/846.edi.yml +57 -0
- data/data/transaction_sets/850.edi.yml +73 -0
- data/data/transaction_sets/855.edi.yml +74 -0
- data/data/transaction_sets/856.edi.yml +54 -0
- data/eddy.gemspec +1 -1
- data/exe/eddy +1 -0
- data/lib/definitions/elements/generated/100.currency_code.rb +200 -0
- data/lib/definitions/elements/generated/146.shipment_method_of_payment.rb +65 -0
- data/lib/definitions/elements/generated/1551.message_text.rb +29 -0
- data/lib/definitions/elements/generated/280.exchange_rate.rb +29 -0
- data/lib/definitions/elements/generated/309.location_qualifier.rb +209 -0
- data/lib/definitions/elements/generated/310.location_identifier.rb +29 -0
- data/lib/definitions/elements/generated/311.shipment_type_code.rb +42 -0
- data/lib/definitions/elements/generated/322.load_empty_status_code.rb +40 -0
- data/lib/definitions/elements/generated/325.tax_identification_number.rb +29 -0
- data/lib/definitions/elements/generated/333.terms_basis_date_code.rb +44 -0
- data/lib/definitions/elements/generated/336.terms_type_code.rb +102 -0
- data/lib/definitions/elements/generated/338.terms_discount_percent.rb +29 -0
- data/lib/definitions/elements/generated/351.terms_discount_days_due.rb +30 -0
- data/lib/definitions/elements/generated/363.note_reference_code.rb +278 -0
- data/lib/definitions/elements/generated/364.communication_number.rb +29 -0
- data/lib/definitions/elements/generated/365.communication_number_qualifier.rb +77 -0
- data/lib/definitions/elements/generated/366.contact_function_code.rb +267 -0
- data/lib/definitions/elements/generated/369.free_form_description.rb +29 -0
- data/lib/definitions/elements/generated/370.terms_discount_due_date.rb +29 -0
- data/lib/definitions/elements/generated/371.change_reason_code.rb +67 -0
- data/lib/definitions/elements/generated/378.allowance_charge_percent_qualifier.rb +48 -0
- data/lib/definitions/elements/generated/386.terms_net_days.rb +30 -0
- data/lib/definitions/elements/generated/446.terms_net_due_date.rb +29 -0
- data/lib/definitions/elements/generated/522.amount_qualifier_code.rb +1510 -0
- data/lib/definitions/elements/generated/673.quantity_qualifier.rb +869 -0
- data/lib/definitions/elements/generated/755.report_type_code.rb +559 -0
- data/lib/definitions/elements/generated/954.percent.rb +29 -0
- data/lib/definitions/elements/generated/963.tax_type_code.rb +111 -0
- data/lib/definitions/segments/generated/amt.rb +56 -0
- data/lib/definitions/segments/generated/bia.rb +107 -0
- data/lib/definitions/segments/generated/cur.rb +73 -0
- data/lib/definitions/segments/generated/dtm.rb +17 -0
- data/lib/definitions/segments/generated/fob.rb +73 -0
- data/lib/definitions/segments/generated/hl.rb +90 -0
- data/lib/definitions/segments/generated/itd.rb +158 -0
- data/lib/definitions/segments/generated/mtx.rb +56 -0
- data/lib/definitions/segments/generated/n2.rb +56 -0
- data/lib/definitions/segments/generated/n9.rb +56 -0
- data/lib/definitions/segments/generated/per.rb +158 -0
- data/lib/definitions/segments/generated/po1.rb +102 -0
- data/lib/definitions/segments/generated/po3.rb +158 -0
- data/lib/definitions/segments/generated/qty.rb +73 -0
- data/lib/definitions/segments/generated/ref.rb +17 -0
- data/lib/definitions/segments/generated/sac.rb +68 -0
- data/lib/definitions/segments/generated/sch.rb +56 -0
- data/lib/definitions/segments/generated/sdq.rb +73 -0
- data/lib/definitions/segments/generated/txi.rb +90 -0
- data/lib/definitions/transaction_sets/manual/846/846.rb +122 -0
- data/lib/definitions/transaction_sets/manual/846/loops/lin.rb +155 -0
- data/lib/definitions/transaction_sets/manual/846/loops/n1.rb +107 -0
- data/lib/definitions/transaction_sets/manual/846/loops/qty.rb +75 -0
- data/lib/definitions/transaction_sets/manual/846/loops/sch.rb +59 -0
- data/lib/definitions/transaction_sets/manual/846/loops/sln.rb +59 -0
- data/lib/definitions/transaction_sets/manual/850/850.rb +108 -1
- data/lib/definitions/transaction_sets/manual/850/loops/ctp.rb +47 -0
- data/lib/definitions/transaction_sets/manual/850/loops/n1.rb +31 -10
- data/lib/definitions/transaction_sets/manual/850/loops/n9.rb +59 -0
- data/lib/definitions/transaction_sets/manual/850/loops/pid.rb +47 -0
- data/lib/definitions/transaction_sets/manual/850/loops/po1.rb +78 -10
- data/lib/definitions/transaction_sets/manual/850/loops/sac.rb +47 -0
- data/lib/eddy.rb +49 -3
- data/lib/eddy/build/transaction_set_builder.rb +1 -1
- data/lib/eddy/config.rb +0 -21
- data/lib/eddy/data.rb +0 -40
- data/lib/eddy/data/persistence/base.rb +5 -11
- data/lib/eddy/data/persistence/memory.rb +14 -22
- data/lib/eddy/errors.rb +13 -9
- data/lib/eddy/models/element/composite.rb +2 -0
- data/lib/eddy/models/element/id.rb +1 -1
- data/lib/eddy/models/element/r.rb +5 -3
- data/lib/eddy/models/functional_group.rb +3 -2
- data/lib/eddy/models/interchange.rb +6 -2
- data/lib/eddy/models/transaction_set.rb +10 -2
- data/lib/eddy/parse.rb +4 -56
- data/lib/eddy/parse/interchange.rb +58 -0
- data/lib/eddy/summary/loop.rb +1 -1
- data/lib/eddy/summary/segment.rb +2 -1
- data/lib/eddy/version.rb +1 -1
- metadata +78 -5
@@ -0,0 +1,29 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 325
|
6
|
+
# - Name: Tax Identification Number
|
7
|
+
# - Type: AN
|
8
|
+
# - Min/Max: 1/20
|
9
|
+
# - Description: Number assigned to a purchaser (buyer, orderer) by a taxing jurisdiction (state, county, etc.); often called a tax exemption number or certificate number
|
10
|
+
class E325 < Eddy::Models::Element::AN
|
11
|
+
# @param val [String]
|
12
|
+
# @param req [String]
|
13
|
+
# @param ref [String]
|
14
|
+
# @return [void]
|
15
|
+
def initialize(val: nil, req: nil, ref: nil)
|
16
|
+
@id = "325"
|
17
|
+
@name = "Tax Identification Number"
|
18
|
+
@description = "Number assigned to a purchaser (buyer, orderer) by a taxing jurisdiction (state, county, etc.); often called a tax exemption number or certificate number"
|
19
|
+
super(
|
20
|
+
min: 1,
|
21
|
+
max: 20,
|
22
|
+
req: req,
|
23
|
+
ref: ref,
|
24
|
+
val: val,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 333
|
6
|
+
# - Name: Terms Basis Date Code
|
7
|
+
# - Type: ID
|
8
|
+
# - Min/Max: 1/2
|
9
|
+
# - Description: Code identifying the beginning of the terms period
|
10
|
+
class E333 < Eddy::Models::Element::ID
|
11
|
+
|
12
|
+
# @param val [String]
|
13
|
+
# @param req [String]
|
14
|
+
# @param ref [String]
|
15
|
+
# @return [void]
|
16
|
+
def initialize(val: nil, req: nil, ref: nil)
|
17
|
+
@id = "333"
|
18
|
+
@name = "Terms Basis Date Code"
|
19
|
+
@description = "Code identifying the beginning of the terms period"
|
20
|
+
super(
|
21
|
+
min: 1,
|
22
|
+
max: 2,
|
23
|
+
req: req,
|
24
|
+
ref: ref,
|
25
|
+
val: val,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Array<String>]
|
30
|
+
def code_list()
|
31
|
+
return [
|
32
|
+
"1", # Ship Date
|
33
|
+
"2", # Delivery Date
|
34
|
+
"3", # Invoice Date
|
35
|
+
"4", # Specified Date
|
36
|
+
"5", # Invoice Receipt Date
|
37
|
+
"6", # Anticipated Delivery Date 7 Effective Date
|
38
|
+
"7", # Effective Date
|
39
|
+
]
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 336
|
6
|
+
# - Name: Terms Type Code
|
7
|
+
# - Type: ID
|
8
|
+
# - Min/Max: 2/2
|
9
|
+
# - Description: Code identifying type of payment terms
|
10
|
+
class E336 < Eddy::Models::Element::ID
|
11
|
+
|
12
|
+
# @param val [String]
|
13
|
+
# @param req [String]
|
14
|
+
# @param ref [String]
|
15
|
+
# @return [void]
|
16
|
+
def initialize(val: nil, req: nil, ref: nil)
|
17
|
+
@id = "336"
|
18
|
+
@name = "Terms Type Code"
|
19
|
+
@description = "Code identifying type of payment terms"
|
20
|
+
super(
|
21
|
+
min: 2,
|
22
|
+
max: 2,
|
23
|
+
req: req,
|
24
|
+
ref: ref,
|
25
|
+
val: val,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Array<String>]
|
30
|
+
def code_list()
|
31
|
+
return [
|
32
|
+
"01", # Basic
|
33
|
+
"02", # End of Month (EOM)
|
34
|
+
"03", # Fixed Date
|
35
|
+
"04", # Deferred or Installment
|
36
|
+
"05", # Discount Not Applicable
|
37
|
+
"06", # Mixed
|
38
|
+
"07", # Extended
|
39
|
+
"08", # Basic Discount Offered
|
40
|
+
"09", # Proximo
|
41
|
+
"10", # Instant
|
42
|
+
"11", # Elective
|
43
|
+
"12", # 10 Days After End of Month (10 EOM)
|
44
|
+
"13", # Seller to advise buyer
|
45
|
+
"14", # Previously agreed upon
|
46
|
+
"15", # Special Proximo
|
47
|
+
"16", # Prompt Payment Act
|
48
|
+
"17", # Terms not Applicable
|
49
|
+
"18", # Fixed Date, Late Payment Penalty Applies
|
50
|
+
"19", # Liquidation
|
51
|
+
"20", # Progress Payment
|
52
|
+
"21", # Fast Pay
|
53
|
+
"22", # Cash Discount Terms Apply
|
54
|
+
"23", # Payment Due Upon Receipt of Invoice
|
55
|
+
"24", # Anticipation
|
56
|
+
"25", # Cash Account
|
57
|
+
"26", # Cash on Advance
|
58
|
+
"27", # Cash on Arrival
|
59
|
+
"28", # Cash per Vendor Request
|
60
|
+
"29", # Cash by State Law
|
61
|
+
"30", # Cash with Order
|
62
|
+
"31", # Cash on Delivery (COD)
|
63
|
+
"32", # Lease Agreement
|
64
|
+
"33", # Net Month Following Invoice (MFI)
|
65
|
+
"34", # Sell by Note
|
66
|
+
"35", # Supplier Floor Plan
|
67
|
+
"36", # Contract Basis
|
68
|
+
"37", # Credit Controlled
|
69
|
+
"38", # Dating Given
|
70
|
+
"39", # Trade Acceptance
|
71
|
+
"40", # Bill to Bill
|
72
|
+
"41", # Letter of Credit
|
73
|
+
"42", # Lump Sum
|
74
|
+
"43", # Fixed Fee
|
75
|
+
"44", # Cost Plus
|
76
|
+
"45", # Bank Transfer
|
77
|
+
"46", # Basic Commission Terms
|
78
|
+
"47", # Bill of Exchange
|
79
|
+
"48", # Cash Against Documents
|
80
|
+
"49", # Certified Check
|
81
|
+
"50", # Discount with Advance Payment
|
82
|
+
"52", # Discount with Prompt Pay
|
83
|
+
"54", # Installment Payments are Due Annually
|
84
|
+
"55", # Installment Payments are Due Semi-annually
|
85
|
+
"56", # Installment Payments are Due Monthly
|
86
|
+
"57", # Installment Payments are Due Quarterly
|
87
|
+
"58", # Irrevocable Letters of Credit
|
88
|
+
"61", # Payment Order Through Bank
|
89
|
+
"63", # Promissory Notes
|
90
|
+
"64", # Secured Account
|
91
|
+
"65", # Letters of Credit at Sight
|
92
|
+
"CA", # Cancellation Option
|
93
|
+
"CO", # Consignment
|
94
|
+
"NC", # No Charge
|
95
|
+
"PP", # Prepayment
|
96
|
+
"ZZ", # Mutually Defined
|
97
|
+
]
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 338
|
6
|
+
# - Name: Terms Discount Percent
|
7
|
+
# - Type: R
|
8
|
+
# - Min/Max: 1/6
|
9
|
+
# - Description: Terms discount percentage, expressed as a percent, available to the purchaser if an invoice is paid on or before the Terms Discount Due Date
|
10
|
+
class E338 < Eddy::Models::Element::R
|
11
|
+
# @param val [Float]
|
12
|
+
# @param req [String]
|
13
|
+
# @param ref [String]
|
14
|
+
# @return [void]
|
15
|
+
def initialize(val: nil, req: nil, ref: nil)
|
16
|
+
@id = "338"
|
17
|
+
@name = "Terms Discount Percent"
|
18
|
+
@description = "Terms discount percentage, expressed as a percent, available to the purchaser if an invoice is paid on or before the Terms Discount Due Date"
|
19
|
+
super(
|
20
|
+
min: 1,
|
21
|
+
max: 6,
|
22
|
+
req: req,
|
23
|
+
ref: ref,
|
24
|
+
val: val,
|
25
|
+
)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 351
|
6
|
+
# - Name: Terms Discount Days Due
|
7
|
+
# - Type: N0
|
8
|
+
# - Min/Max: 1/3
|
9
|
+
# - Description: Number of days in the terms discount period by which payment is due if terms discount is earned
|
10
|
+
class E351 < Eddy::Models::Element::N
|
11
|
+
# @param val [Integer]
|
12
|
+
# @param req [String]
|
13
|
+
# @param ref [String]
|
14
|
+
# @return [void]
|
15
|
+
def initialize(val: nil, req: nil, ref: nil)
|
16
|
+
@id = "351"
|
17
|
+
@name = "Terms Discount Days Due"
|
18
|
+
@description = "Number of days in the terms discount period by which payment is due if terms discount is earned"
|
19
|
+
super(
|
20
|
+
min: 1,
|
21
|
+
max: 3,
|
22
|
+
req: req,
|
23
|
+
ref: ref,
|
24
|
+
val: val,
|
25
|
+
decimals: 0,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,278 @@
|
|
1
|
+
module Eddy
|
2
|
+
module Elements
|
3
|
+
# ### Element Summary:
|
4
|
+
#
|
5
|
+
# - Id: 363
|
6
|
+
# - Name: Note Reference Code
|
7
|
+
# - Type: ID
|
8
|
+
# - Min/Max: 3/3
|
9
|
+
# - Description: Code identifying the functional area or purpose for which the note applies
|
10
|
+
class E363 < Eddy::Models::Element::ID
|
11
|
+
|
12
|
+
# @param val [String]
|
13
|
+
# @param req [String]
|
14
|
+
# @param ref [String]
|
15
|
+
# @return [void]
|
16
|
+
def initialize(val: nil, req: nil, ref: nil)
|
17
|
+
@id = "363"
|
18
|
+
@name = "Note Reference Code"
|
19
|
+
@description = "Code identifying the functional area or purpose for which the note applies"
|
20
|
+
super(
|
21
|
+
min: 3,
|
22
|
+
max: 3,
|
23
|
+
req: req,
|
24
|
+
ref: ref,
|
25
|
+
val: val,
|
26
|
+
)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @return [Array<String>]
|
30
|
+
def code_list()
|
31
|
+
return [
|
32
|
+
"AAA", # Agent Details
|
33
|
+
"AAB", # Associated Business Areas
|
34
|
+
"AAC", # Borrower
|
35
|
+
"AAD", # Nationality Details
|
36
|
+
"AAE", # Assets
|
37
|
+
"AAF", # Liabilities
|
38
|
+
"ABN", # Abbreviated Nomenclature
|
39
|
+
"ACC", # Access Instructions
|
40
|
+
"ACI", # Additional Claim Information
|
41
|
+
"ACN", # Action Taken
|
42
|
+
"ACS", # Actual Solution
|
43
|
+
"ACT", # Action
|
44
|
+
"ADD", # Additional Information
|
45
|
+
"AES", # Actual Evaluation Summary
|
46
|
+
"AET", # Adverse Event Terms
|
47
|
+
"ALG", # Allergies
|
48
|
+
"ALL", # All Documents
|
49
|
+
"ALT", # Alerts
|
50
|
+
"AMN", # Additional Manufacturer Narrative
|
51
|
+
"AOO", # Area of Operation
|
52
|
+
"APN", # Application Notes
|
53
|
+
"APS", # Appropriation Specifications
|
54
|
+
"BBD", # Bank Description
|
55
|
+
"BBF", # Business Founder
|
56
|
+
"BBH", # Business History
|
57
|
+
"BBN", # Banking Notes
|
58
|
+
"BBO", # Business Origin Description
|
59
|
+
"BBT", # Brand Names
|
60
|
+
"BFD", # Business Financing Details
|
61
|
+
"BOL", # Bill of Lading Note
|
62
|
+
"BUR", # Bureau Remarks
|
63
|
+
"CAA", # Authentication Information
|
64
|
+
"CAB", # Line of In-State Business
|
65
|
+
"CAC", # Relationship Information
|
66
|
+
"CAD", # Basis for Amount Due
|
67
|
+
"CAE", # Type of Debt
|
68
|
+
"CAF", # Land Use Purpose
|
69
|
+
"CAG", # Land Description
|
70
|
+
"CAH", # Basis of Calculation
|
71
|
+
"CAI", # General Business Description
|
72
|
+
"CAJ", # Type of Business
|
73
|
+
"CAK", # Character of Business
|
74
|
+
"CAL", # Representation of Value
|
75
|
+
"CAM", # Supporting Statement, Tax, and Fee Computation
|
76
|
+
"CAN", # Cooperative Corporation Statement
|
77
|
+
"CAO", # Close Corporation Statement
|
78
|
+
"CAP", # Agreement to Abide by Laws
|
79
|
+
"CAQ", # Stock Restrictions
|
80
|
+
"CAR", # Other Related Information
|
81
|
+
"CAS", # Prohibition Against Being an Officer
|
82
|
+
"CAT", # Qualification of Director
|
83
|
+
"CAU", # Nature of Charter
|
84
|
+
"CAV", # Statement of Assets and Liabilities
|
85
|
+
"CAW", # Bankruptcy Information
|
86
|
+
"CAX", # Certificate of Disclosure
|
87
|
+
"CAZ", # Asset Detail
|
88
|
+
"CBA", # Statement Related to Regulation
|
89
|
+
"CBB", # Consideration to be Received
|
90
|
+
"CBC", # Other Lawful Provisions
|
91
|
+
"CBH", # Monetary Amount Description
|
92
|
+
"CBI", # Description of Title
|
93
|
+
"CCA", # Competition
|
94
|
+
"CCB", # Construction Details
|
95
|
+
"CCC", # Construction Financing
|
96
|
+
"CCD", # Construction Line of Business
|
97
|
+
"CCE", # Contract Details
|
98
|
+
"CCF", # Corporate Filing Details
|
99
|
+
"CCG", # Customer Description
|
100
|
+
"CCN", # Copyright Notice
|
101
|
+
"CDD", # Contingent Debt Details
|
102
|
+
"CER", # Certification Narrative
|
103
|
+
"CHG", # Change
|
104
|
+
"CIG", # Cigarette Information
|
105
|
+
"CLN", # Classifying Information
|
106
|
+
"CLR", # Security Clearance Instructions
|
107
|
+
"CMP", # Concomitant Medical Product Description
|
108
|
+
"CMT", # Maintenance Comment
|
109
|
+
"COD", # Corrected Data
|
110
|
+
"COM", # Consumer Comments
|
111
|
+
"CON", # Conviction Act Details
|
112
|
+
"CRA", # Credit Report Alerts
|
113
|
+
"CRK", # Closing Comment
|
114
|
+
"CRN", # Credit Report Notes
|
115
|
+
"CUS", # Customs declaration
|
116
|
+
"DCP", # Goals, Rehabilitation Potential, or Discharge Plans
|
117
|
+
"DEE", # Event Description
|
118
|
+
"DEL", # Delivery
|
119
|
+
"DEP", # Problem Description
|
120
|
+
"DFR", # Dose, Frequency and Route Description
|
121
|
+
"DFS", # Departure from Specification Comment
|
122
|
+
"DGN", # Diagnosis Description
|
123
|
+
"DME", # Durable Medical Equipment (DME) and Supplies
|
124
|
+
"DOD", # Description of Damage
|
125
|
+
"DOI", # Outcome Description
|
126
|
+
"ECD", # Environmental Conditions Description
|
127
|
+
"ECM", # Estimate Comment
|
128
|
+
"ECN", # Equipment Condition Description
|
129
|
+
"ECT", # Emergency Certification
|
130
|
+
"EED", # Equipment Description
|
131
|
+
"EFD", # Equipment Function Description
|
132
|
+
"ELE", # Equipment Log Entry
|
133
|
+
"EMC", # Employment Comments
|
134
|
+
"EMD", # Estimate Method Description
|
135
|
+
"ENR", # Explanation for Non-Return of Device to Manufacturer
|
136
|
+
"ERN", # Error Notes
|
137
|
+
"EVL", # Event Location
|
138
|
+
"EXE", # Exemption Description
|
139
|
+
"EXR", # Exercise Routine
|
140
|
+
"EXT", # Exterior Description
|
141
|
+
"FEE", # Fee Description
|
142
|
+
"FUT", # Future Plans
|
143
|
+
"GEN", # Entire Transaction Set
|
144
|
+
"GPI", # General Product or Process Information
|
145
|
+
"GSI", # General Specification Information
|
146
|
+
"HHI", # Household Goods Information
|
147
|
+
"ICN", # Interviewee Conversation
|
148
|
+
"IDT", # Intangible Description
|
149
|
+
"IID", # Inventory (Stock) Description
|
150
|
+
"IIE", # Investment Description
|
151
|
+
"IIR", # Intercompany Relations
|
152
|
+
"IMP", # Problem Impact
|
153
|
+
"INS", # Insurance
|
154
|
+
"INT", # General Order Instructions
|
155
|
+
"INV", # Invoice Instruction
|
156
|
+
"IVC", # Income Verification Comments
|
157
|
+
"JVD", # Joint Venture Description
|
158
|
+
"LAB", # Labeling Instructions
|
159
|
+
"LBD", # Laboratory Data
|
160
|
+
"LBS", # Labeled Strength
|
161
|
+
"LEN", # Lender Use
|
162
|
+
"LIN", # Line Item
|
163
|
+
"LIQ", # Liquor Information
|
164
|
+
"LLA", # Letters of Liability Agreements
|
165
|
+
"LLB", # Loan Details
|
166
|
+
"LLC", # Long Term Debt Description
|
167
|
+
"LOC", # Location Description Information
|
168
|
+
"LOI", # Loading Instructions
|
169
|
+
"LSD", # Legal Structure Details
|
170
|
+
"MCD", # Marital Contract Details
|
171
|
+
"MDO", # Device Operator Description
|
172
|
+
"MED", # Medications
|
173
|
+
"MFG", # Manufacturing Instructions
|
174
|
+
"MKN", # Marketing Notes
|
175
|
+
"MMD", # Merger Description
|
176
|
+
"MSD", # Marketable Securities Description
|
177
|
+
"NCD", # Nonconformance Specification
|
178
|
+
"NPD", # Nameplate Data
|
179
|
+
"NTR", # Nutritional Requirements
|
180
|
+
"OBI", # Originator to Beneficiary Instructions
|
181
|
+
"OBL", # Obligation Description
|
182
|
+
"OCA", # Other Current Asset Description
|
183
|
+
"OCC", # Occupancy Information
|
184
|
+
"OCL", # Other Current Liability Description
|
185
|
+
"OCP", # Occupation
|
186
|
+
"OCR", # Outside the Continental U.S. (OCONUS) Rating Information
|
187
|
+
"ODT", # Orders for Disciplines and Treatments
|
188
|
+
"OLS", # Original Legal Structure
|
189
|
+
"OPO", # Occupation Definition
|
190
|
+
"ORA", # Test Results Other Than Room Air
|
191
|
+
"ORE", # Other Remedial Action
|
192
|
+
"ORI", # Order Instructions
|
193
|
+
"OTH", # Other Instructions
|
194
|
+
"OTN", # Another Type of Number Description
|
195
|
+
"OTS", # Report Source Description
|
196
|
+
"PAY", # Payables
|
197
|
+
"PCS", # Process Specification
|
198
|
+
"PDS", # Product Specification
|
199
|
+
"PED", # Employee Sharing Arrangements
|
200
|
+
"PEN", # Penalty Description
|
201
|
+
"PES", # Partial Pressure of Oxygen (PO2) is 60 millimeters (MM) of Mercury (Hg) or above, or arterial blood oxygen saturation is 90% or above
|
202
|
+
"PID", # Property Improvement Description
|
203
|
+
"PKG", # Packaging Instructions
|
204
|
+
"PMT", # Payment
|
205
|
+
"POB", # Primary Observation
|
206
|
+
"POC", # Principals or Organization Comments
|
207
|
+
"POL", # Property Owner Location Information
|
208
|
+
"PPC", # Principal Procedure Code Description
|
209
|
+
"PRI", # Priority
|
210
|
+
"PRN", # Public Record Notes
|
211
|
+
"PRO", # Previous Registered Office
|
212
|
+
"PRR", # Price Range
|
213
|
+
"PSY", # Problem Summary
|
214
|
+
"PUR", # Purchasing
|
215
|
+
"QUL", # Qualifications
|
216
|
+
"QUT", # Quotation Instruction
|
217
|
+
"RDI", # Reason for Delinquency Information
|
218
|
+
"REC", # Recommendation
|
219
|
+
"REG", # Registered Activity
|
220
|
+
"REP", # Report
|
221
|
+
"REV", # Receivables
|
222
|
+
"RFL", # Reason for Leaving
|
223
|
+
"RHB", # Functional Limitations, Reason Homebound, or Both
|
224
|
+
"RLA", # Reason for Leave of Absence
|
225
|
+
"RLH", # Reasons Patient Leaves Home
|
226
|
+
"RNH", # Times and Reasons Patient Not at Home
|
227
|
+
"RNI", # Missing Report Explanation
|
228
|
+
"ROU", # Circuit Routing Instructions
|
229
|
+
"RPT", # Report Remarks
|
230
|
+
"RST", # Place Where a Report was Submitted
|
231
|
+
"RVC", # Rent Verification Comments
|
232
|
+
"SAN", # Settlement Amount Notes
|
233
|
+
"SCN", # Ocean Shipping Container Information
|
234
|
+
"SDD", # Sentence Description
|
235
|
+
"SET", # Unusual Home, Social Environment, or Both
|
236
|
+
"SFM", # Safety Measures
|
237
|
+
"SMD", # Selling Means Description
|
238
|
+
"SOB", # Secondary Observation
|
239
|
+
"SOW", # Statement of Work
|
240
|
+
"SPH", # Special Handling
|
241
|
+
"SPT", # Supplementary Plan of Treatment
|
242
|
+
"SPV", # Closing Instructions
|
243
|
+
"SSA", # School Attended Details
|
244
|
+
"SSC", # Status Comment
|
245
|
+
"SSD", # Sales Description
|
246
|
+
"SSE", # Spouse Information
|
247
|
+
"SSG", # School Graduated Details
|
248
|
+
"SSH", # Security Service Information
|
249
|
+
"SSI", # Shareholding Information
|
250
|
+
"SSS", # Signing Authority
|
251
|
+
"SST", # Sales Territory
|
252
|
+
"TAF", # Tariff Abbreviation
|
253
|
+
"TCF", # Tariff Commodity Footnotes
|
254
|
+
"TDA", # Turkish Defense Affairs Authorization Information
|
255
|
+
"TES", # Task Statement
|
256
|
+
"TIL", # Tariff Index
|
257
|
+
"TLF", # Tariff Rule
|
258
|
+
"TLR", # Tradeline Remarks
|
259
|
+
"TPO", # Third Party Organization Notes
|
260
|
+
"TRA", # Transportation
|
261
|
+
"TRE", # Reportable Event Description
|
262
|
+
"TRF", # Tariff Rate Footnotes
|
263
|
+
"TRS", # Quality Information
|
264
|
+
"TSD", # Terms of Sale Description
|
265
|
+
"TSF", # Tariff Section Footnotes
|
266
|
+
"TST", # Test Results
|
267
|
+
"UPI", # Updated Information
|
268
|
+
"VEC", # Verification Comments
|
269
|
+
"VNN", # Variation Notes
|
270
|
+
"WHI", # Warehouse Instruction
|
271
|
+
"WRP", # Wrapping Instructions
|
272
|
+
"ZZZ", # Mutually Defined
|
273
|
+
]
|
274
|
+
end
|
275
|
+
|
276
|
+
end
|
277
|
+
end
|
278
|
+
end
|