eancom 1.4.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -3
- data/.gitlab-ci.yml +11 -13
- data/.ruby-version +1 -1
- data/Gemfile +2 -4
- data/Gemfile.lock +23 -103
- data/README.md +46 -0
- data/definitions/desadv/d01b.rb +139 -93
- data/definitions/desadv/d96a.rb +187 -101
- data/definitions/invoic/d01b.rb +559 -0
- data/definitions/invoic/d96a.rb +389 -0
- data/definitions/invrpt/d01b.rb +134 -0
- data/definitions/invrpt/d96a.rb +125 -0
- data/definitions/orders/d01b.rb +182 -0
- data/definitions/orders/d96b.rb +198 -0
- data/definitions/ordrsp/d01b.rb +251 -0
- data/definitions/ordrsp/d96b.rb +226 -0
- data/definitions/pricat/d01b.rb +225 -0
- data/definitions/pricat/d96b.rb +207 -0
- data/definitions/retann/d01b.rb +172 -0
- data/definitions/retann/d96b.rb +221 -0
- data/definitions/segments/ajt.rb +47 -0
- data/definitions/segments/alc.rb +128 -36
- data/definitions/segments/bgm.rb +128 -0
- data/definitions/segments/cdi.rb +39 -0
- data/definitions/segments/cnt.rb +4 -0
- data/definitions/segments/cta.rb +89 -0
- data/definitions/segments/cux.rb +9 -2
- data/definitions/segments/dgs.rb +34 -0
- data/definitions/segments/doc.rb +45 -0
- data/definitions/segments/dtm.rb +85 -1
- data/definitions/segments/efi.rb +67 -0
- data/definitions/segments/eqd.rb +37 -0
- data/definitions/segments/ftx.rb +24 -2
- data/definitions/segments/gin.rb +113 -0
- data/definitions/segments/imd.rb +5 -1
- data/definitions/segments/inv.rb +94 -0
- data/definitions/segments/lin.rb +23 -3
- data/definitions/segments/loc.rb +52 -4
- data/definitions/segments/moa.rb +86 -2
- data/definitions/segments/nad.rb +69 -9
- data/definitions/segments/pac.rb +12 -0
- data/definitions/segments/pat.rb +171 -0
- data/definitions/segments/pcd.rb +72 -0
- data/definitions/segments/pci.rb +110 -0
- data/definitions/segments/pgi.rb +6 -2
- data/definitions/segments/pia.rb +21 -21
- data/definitions/segments/pri.rb +21 -1
- data/definitions/segments/qty.rb +219 -5
- data/definitions/segments/rff.rb +51 -7
- data/definitions/segments/rte.rb +52 -0
- data/definitions/segments/tax.rb +17 -10
- data/definitions/segments/tdt.rb +24 -0
- data/definitions/segments/tod.rb +64 -0
- data/definitions/segments/tru.rb +34 -0
- data/definitions/segments/una.rb +7 -7
- data/definitions/segments/unb.rb +4 -4
- data/definitions/segments/unh.rb +70 -5
- data/definitions/segments/uns.rb +2 -2
- data/definitions/segments/unt.rb +2 -2
- data/definitions/slsrpt/d01b.rb +104 -100
- data/definitions/slsrpt/d96a.rb +104 -99
- data/eancom.gemspec +5 -8
- data/lib/eancom/edifact/document.rb +2 -2
- data/lib/eancom/edifact/footer.rb +1 -0
- data/lib/eancom/edifact/segment.rb +2 -2
- data/lib/eancom/edifact/segments/ajt.rb +32 -0
- data/lib/eancom/edifact/segments/ali.rb +2 -4
- data/lib/eancom/edifact/segments/bgm.rb +4 -3
- data/lib/eancom/edifact/segments/cdi.rb +30 -0
- data/lib/eancom/edifact/segments/cnt.rb +8 -1
- data/lib/eancom/edifact/segments/cps.rb +4 -1
- data/lib/eancom/edifact/segments/cta.rb +30 -0
- data/lib/eancom/edifact/segments/cux.rb +1 -1
- data/lib/eancom/edifact/segments/dgs.rb +31 -0
- data/lib/eancom/edifact/segments/doc.rb +30 -0
- data/lib/eancom/edifact/segments/dtm.rb +10 -6
- data/lib/eancom/edifact/segments/efi.rb +38 -0
- data/lib/eancom/edifact/segments/eqd.rb +30 -0
- data/lib/eancom/edifact/segments/ftx.rb +2 -2
- data/lib/eancom/edifact/segments/gin.rb +45 -0
- data/lib/eancom/edifact/segments/imd.rb +1 -1
- data/lib/eancom/edifact/segments/inv.rb +43 -0
- data/lib/eancom/edifact/segments/lin.rb +7 -3
- data/lib/eancom/edifact/segments/loc.rb +8 -5
- data/lib/eancom/edifact/segments/mea.rb +1 -0
- data/lib/eancom/edifact/segments/moa.rb +3 -3
- data/lib/eancom/edifact/segments/nad.rb +11 -6
- data/lib/eancom/edifact/segments/pac.rb +3 -1
- data/lib/eancom/edifact/segments/pat.rb +37 -0
- data/lib/eancom/edifact/segments/pcd.rb +33 -0
- data/lib/eancom/edifact/segments/pci.rb +40 -0
- data/lib/eancom/edifact/segments/pia.rb +1 -0
- data/lib/eancom/edifact/segments/pri.rb +0 -1
- data/lib/eancom/edifact/segments/qty.rb +9 -5
- data/lib/eancom/edifact/segments/rff.rb +8 -2
- data/lib/eancom/edifact/segments/rte.rb +33 -0
- data/lib/eancom/edifact/segments/tax.rb +7 -1
- data/lib/eancom/edifact/segments/tdt.rb +4 -1
- data/lib/eancom/edifact/segments/tod.rb +33 -0
- data/lib/eancom/edifact/segments/tru.rb +31 -0
- data/lib/eancom/edifact/segments/una.rb +2 -1
- data/lib/eancom/edifact/segments/unb.rb +4 -5
- data/lib/eancom/edifact/segments/unh.rb +6 -4
- data/lib/eancom/edifact/segments/uns.rb +3 -0
- data/lib/eancom/edifact/structure.rb +0 -1
- data/lib/eancom/edifact.rb +15 -1
- data/lib/eancom/factory.rb +1 -1
- data/lib/eancom/parser/document.rb +2 -10
- data/lib/eancom/version.rb +1 -1
- data/lib/eancom.rb +3 -1
- data/pricat.json +1 -0
- metadata +51 -52
- data/.rspec_status +0 -225
- data/.rubocop.yml +0 -2
data/definitions/slsrpt/d01b.rb
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
Eancom::Definition.create(name: 'D01B', type: :slsrpt) do |document, config|
|
2
2
|
document.header do |header|
|
3
|
-
header.segment Eancom::Edifact::UNA.new
|
3
|
+
header.segment Eancom::Edifact::UNA.new
|
4
4
|
|
5
5
|
header.segment Eancom::Edifact::UNB.new(
|
6
6
|
syntax_identifier: 'UNOC',
|
7
7
|
syntax_version_number: '3',
|
8
8
|
interchange_sender_identification: config.header.interchange_sender_identification,
|
9
|
-
sender_identifiction_code_qualifier:
|
9
|
+
sender_identifiction_code_qualifier: '14',
|
10
10
|
interchange_recipient_identification: config.header.interchange_recipient_identification,
|
11
|
-
recipient_identifiction_code_qualifier:
|
11
|
+
recipient_identifiction_code_qualifier: '14',
|
12
12
|
date: config.header.date,
|
13
13
|
time: config.header.time,
|
14
|
-
interchange_control_reference: config.header.interchange_control_reference
|
14
|
+
interchange_control_reference: config.header.interchange_control_reference
|
15
15
|
)
|
16
16
|
|
17
17
|
header.segment Eancom::Edifact::UNH.new(
|
@@ -25,120 +25,120 @@ Eancom::Definition.create(name: 'D01B', type: :slsrpt) do |document, config|
|
|
25
25
|
end
|
26
26
|
|
27
27
|
document.body do |body|
|
28
|
-
|
29
|
-
# Messages
|
30
28
|
messages = config.body.messages
|
31
29
|
|
32
30
|
messages.each do |message|
|
33
|
-
|
31
|
+
code_list_identification_code = if message.code_list_identification_code.nil?
|
32
|
+
''
|
33
|
+
else
|
34
|
+
message.code_list_identification_code
|
35
|
+
end
|
34
36
|
body.segment Eancom::Edifact::BGM.new(
|
35
|
-
document_name_code:
|
36
|
-
code_list_identification_code:
|
37
|
+
document_name_code: message.document_name_code,
|
38
|
+
code_list_identification_code: code_list_identification_code,
|
37
39
|
code_list_responsible_agency_code: '9',
|
38
40
|
document_identifier: message.document_identifier,
|
39
|
-
message_function_code:
|
41
|
+
message_function_code: message.message_function_code
|
40
42
|
)
|
41
43
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
date_time: message.document_message_date_time.date_time,
|
46
|
-
format: '102'
|
47
|
-
)
|
44
|
+
date_time_messages = message.date_time_messages
|
45
|
+
date_time_messages.each_with_index do |dtm, index|
|
46
|
+
next unless index == 0
|
48
47
|
|
49
|
-
|
50
|
-
|
48
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
49
|
+
key = dtm.identifier.intern.to_sym
|
51
50
|
body.segment Eancom::Edifact::DTM.new(
|
52
|
-
type:
|
53
|
-
date_time: date_time,
|
51
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
52
|
+
date_time: dtm[key].date_time,
|
54
53
|
format: '102'
|
55
54
|
)
|
56
55
|
end
|
57
56
|
|
58
|
-
|
59
|
-
|
57
|
+
date_time_messages.each_with_index do |dtm, index|
|
58
|
+
next unless index == 1
|
59
|
+
|
60
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
61
|
+
key = dtm.identifier.intern.to_sym
|
60
62
|
body.segment Eancom::Edifact::DTM.new(
|
61
|
-
type:
|
62
|
-
date_time: date_time,
|
63
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
64
|
+
date_time: dtm[key].date_time,
|
63
65
|
format: '102'
|
64
66
|
)
|
65
67
|
end
|
66
68
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
69
|
+
date_time_messages.each_with_index do |dtm, index|
|
70
|
+
next unless index == 2
|
71
|
+
|
72
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
73
|
+
key = dtm.identifier.intern.to_sym
|
74
|
+
body.segment Eancom::Edifact::DTM.new(
|
75
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
76
|
+
date_time: dtm[key].date_time,
|
77
|
+
format: '102'
|
78
|
+
)
|
79
|
+
end
|
80
|
+
|
81
|
+
nads = message.nads
|
82
|
+
nads.each_with_index do |nad, index|
|
83
|
+
next unless index == 0
|
84
|
+
|
85
|
+
structure = Eancom.find_structure(tag: 'NAD')
|
86
|
+
key = nad.identifier.intern.to_sym
|
78
87
|
body.segment Eancom::Edifact::NAD.new(
|
79
|
-
party_function_code_qualifier:
|
80
|
-
party_identifier:
|
81
|
-
|
88
|
+
party_function_code_qualifier: structure.dictionary_lookup(:party_function_code_qualifier, nad.identifier),
|
89
|
+
party_identifier: nad[key].party_identifier,
|
90
|
+
code_list_responsible_agency_code_1: '9'
|
82
91
|
)
|
83
92
|
end
|
84
93
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
:code_list_responsible_agancy_code_1,
|
91
|
-
buyer.code_list_responsible_agancy_code_1
|
92
|
-
)
|
93
|
-
else
|
94
|
-
'9'
|
95
|
-
end
|
94
|
+
nads.each_with_index do |nad, index|
|
95
|
+
next unless index == 1
|
96
|
+
|
97
|
+
structure = Eancom.find_structure(tag: 'NAD')
|
98
|
+
key = nad.identifier.intern.to_sym
|
96
99
|
body.segment Eancom::Edifact::NAD.new(
|
97
|
-
party_function_code_qualifier:
|
98
|
-
party_identifier:
|
99
|
-
|
100
|
+
party_function_code_qualifier: structure.dictionary_lookup(:party_function_code_qualifier, nad.identifier),
|
101
|
+
party_identifier: nad[key].party_identifier,
|
102
|
+
code_list_responsible_agency_code_1: '9'
|
100
103
|
)
|
101
104
|
end
|
102
105
|
|
103
106
|
# Reference Currency
|
104
107
|
if currency = message.currency
|
108
|
+
structure = Eancom.find_structure(tag: 'CUX')
|
105
109
|
body.segment Eancom::Edifact::CUX.new(
|
106
110
|
currency_identification_code_1: currency.currency_identification_code_1,
|
107
|
-
currency_type_code_qualifier_1:
|
108
|
-
|
111
|
+
currency_type_code_qualifier_1: structure.dictionary_lookup(:currency_type_code_qualifier_1,
|
112
|
+
currency.currency_type_code_qualifier_1),
|
113
|
+
currency_usage_code_qualifier_1: structure.dictionary_lookup(:currency_usage_code_qualifier_1,
|
114
|
+
currency.currency_usage_code_qualifier_1)
|
109
115
|
)
|
110
116
|
end
|
111
117
|
|
112
118
|
# Location
|
113
119
|
if location = message.location
|
114
|
-
|
115
|
-
structure = Eancom.find_structure(tag: 'LOC')
|
116
|
-
structure.dictionary_lookup(
|
117
|
-
:code_list_responsible_agancy_code,
|
118
|
-
location.code_list_responsible_agancy_code
|
119
|
-
)
|
120
|
-
else
|
121
|
-
'9'
|
122
|
-
end
|
123
|
-
|
120
|
+
structure = Eancom.find_structure(tag: 'LOC')
|
124
121
|
body.segment Eancom::Edifact::LOC.new(
|
125
122
|
code_list_identification_code: location.code_list_identification_code,
|
126
|
-
|
127
|
-
location_function_qualifier:
|
123
|
+
code_list_responsible_agency_code: structure.dictionary_lookup(:code_list_responsible_agency_code, location.code_list_responsible_agency_code),
|
124
|
+
location_function_qualifier: structure.dictionary_lookup(:location_function_qualifier, location.location_function_qualifier),
|
128
125
|
location_name_code: location.location_name_code
|
129
126
|
)
|
130
127
|
end
|
131
128
|
|
132
129
|
# Sales Date
|
133
|
-
|
130
|
+
date_time_messages.each_with_index do |dtm, index|
|
131
|
+
next unless index == 3
|
132
|
+
|
133
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
134
|
+
key = dtm.identifier.intern.to_sym
|
134
135
|
body.segment Eancom::Edifact::DTM.new(
|
135
|
-
type:
|
136
|
-
date_time: date_time,
|
136
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
137
|
+
date_time: dtm[key].date_time,
|
137
138
|
format: '102'
|
138
139
|
)
|
139
140
|
end
|
140
141
|
|
141
|
-
# Items
|
142
142
|
total_quantity = 0
|
143
143
|
|
144
144
|
items = message.items
|
@@ -146,57 +146,61 @@ Eancom::Definition.create(name: 'D01B', type: :slsrpt) do |document, config|
|
|
146
146
|
items.each_with_index do |item, index|
|
147
147
|
total_quantity += item.quantity.to_i
|
148
148
|
|
149
|
+
structure = Eancom.find_structure(tag: 'LIN')
|
149
150
|
body.segment Eancom::Edifact::LIN.new(
|
150
|
-
line_item_identifier_1:
|
151
|
+
line_item_identifier_1: (index + 1).to_s,
|
151
152
|
item_identifier: item.ean,
|
152
|
-
item_type_identification_code:
|
153
|
+
item_type_identification_code: structure.dictionary_lookup(:item_type_identification_code, item.item_type_identification_code)
|
153
154
|
)
|
154
155
|
|
155
|
-
|
156
|
+
references = item.references
|
157
|
+
references.each_with_index do |rff, index|
|
158
|
+
structure = Eancom.find_structure(tag: 'RFF')
|
159
|
+
key = rff.identifier.intern.to_sym
|
156
160
|
body.segment Eancom::Edifact::RFF.new(
|
157
|
-
reference_code_qualifier:
|
158
|
-
reference_identifier:
|
161
|
+
reference_code_qualifier: structure.dictionary_lookup(:reference_code_qualifier, rff.identifier),
|
162
|
+
reference_identifier: rff[key].reference_identifier
|
159
163
|
)
|
160
164
|
end
|
161
165
|
|
162
166
|
prices = item.prices
|
163
167
|
prices.each do |price|
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
168
|
+
next unless price = price.price
|
169
|
+
|
170
|
+
structure = Eancom.find_structure(tag: 'PRI')
|
171
|
+
body.segment Eancom::Edifact::PRI.new(
|
172
|
+
price_amount: price.price_amount,
|
173
|
+
price_code_qualifier: structure.dictionary_lookup(:price_code_qualifier, price.price_code_qualifier),
|
174
|
+
price_specification_code: structure.dictionary_lookup(:price_specification_code,
|
175
|
+
price.price_specification_code),
|
176
|
+
price_type_code: price.price_type_code
|
177
|
+
)
|
173
178
|
end
|
174
179
|
|
175
|
-
|
176
|
-
|
180
|
+
qty = item.quantities
|
181
|
+
qty.each_with_index do |qty, index|
|
182
|
+
structure = Eancom.find_structure(tag: 'QTY')
|
183
|
+
key = qty.identifier.intern.to_sym
|
177
184
|
body.segment Eancom::Edifact::QTY.new(
|
178
|
-
quantity_type_code_qualifier:
|
179
|
-
quantity:
|
185
|
+
quantity_type_code_qualifier: structure.dictionary_lookup(:quantity_type_code_qualifier, qty.identifier),
|
186
|
+
quantity: qty[key].quantity
|
180
187
|
)
|
181
188
|
end
|
182
189
|
end
|
183
190
|
|
184
|
-
body.segment Eancom::Edifact::UNS.new(
|
185
|
-
section_identification: 'S'
|
186
|
-
)
|
187
|
-
|
188
191
|
body.segment Eancom::Edifact::UNT.new(
|
189
|
-
number_of_segments_in_message:
|
190
|
-
message_reference_number: config.header.message_reference_number
|
192
|
+
number_of_segments_in_message: (document.total_segments + 2).to_s,
|
193
|
+
message_reference_number: config.header.message_reference_number
|
191
194
|
)
|
192
195
|
end
|
196
|
+
end
|
193
197
|
|
194
|
-
|
198
|
+
document.footer do |footer|
|
199
|
+
messages = config.body.messages
|
195
200
|
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
end
|
201
|
+
footer.segment Eancom::Edifact::UNZ.new(
|
202
|
+
interchange_control_count: messages.size.to_s,
|
203
|
+
interchange_control_reference: config.header.interchange_control_reference.to_s
|
204
|
+
)
|
201
205
|
end
|
202
206
|
end
|
data/definitions/slsrpt/d96a.rb
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
Eancom::Definition.create(name: 'D96A', type: :slsrpt) do |document, config|
|
2
|
+
# Creates a template for an slsrpt d01b formatted edifact document
|
2
3
|
document.header do |header|
|
3
|
-
header.segment Eancom::Edifact::UNA.new
|
4
|
+
header.segment Eancom::Edifact::UNA.new
|
4
5
|
|
5
6
|
header.segment Eancom::Edifact::UNB.new(
|
6
|
-
syntax_identifier:
|
7
|
-
syntax_version_number:
|
7
|
+
syntax_identifier: 'UNOA',
|
8
|
+
syntax_version_number: '2',
|
8
9
|
interchange_sender_identification: config.header.interchange_sender_identification,
|
9
|
-
sender_identifiction_code_qualifier:
|
10
|
+
sender_identifiction_code_qualifier: '14',
|
10
11
|
interchange_recipient_identification: config.header.interchange_recipient_identification,
|
11
|
-
recipient_identifiction_code_qualifier:
|
12
|
+
recipient_identifiction_code_qualifier: '14',
|
12
13
|
date: config.header.date,
|
13
14
|
time: config.header.time,
|
14
|
-
interchange_control_reference: config.header.interchange_control_reference
|
15
|
+
interchange_control_reference: config.header.interchange_control_reference
|
15
16
|
)
|
16
17
|
|
17
18
|
header.segment Eancom::Edifact::UNH.new(
|
@@ -25,111 +26,106 @@ Eancom::Definition.create(name: 'D96A', type: :slsrpt) do |document, config|
|
|
25
26
|
end
|
26
27
|
|
27
28
|
document.body do |body|
|
28
|
-
|
29
29
|
# Messages
|
30
30
|
messages = config.body.messages
|
31
31
|
|
32
32
|
messages.each do |message|
|
33
|
-
|
34
33
|
body.segment Eancom::Edifact::BGM.new(
|
35
|
-
document_name_code:
|
36
|
-
document_identifier: message.document_identifier
|
37
|
-
)
|
38
|
-
|
39
|
-
# Document Date
|
40
|
-
body.segment Eancom::Edifact::DTM.new(
|
41
|
-
type: '137',
|
42
|
-
date_time: message.document_message_date_time.date_time,
|
43
|
-
format: '102'
|
34
|
+
document_name_code: message.document_name_code,
|
35
|
+
document_identifier: message.document_identifier
|
44
36
|
)
|
45
37
|
|
46
|
-
|
47
|
-
|
38
|
+
date_time_messages = message.date_time_messages
|
39
|
+
date_time_messages.each_with_index do |dtm, index|
|
40
|
+
next unless index == 0
|
41
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
42
|
+
key = dtm.identifier.intern.to_sym
|
48
43
|
body.segment Eancom::Edifact::DTM.new(
|
49
|
-
type:
|
50
|
-
date_time: date_time,
|
44
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
45
|
+
date_time: dtm[key].date_time,
|
51
46
|
format: '102'
|
52
47
|
)
|
53
48
|
end
|
54
49
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
50
|
+
date_time_messages.each_with_index do |dtm, index|
|
51
|
+
next unless index == 1
|
52
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
53
|
+
key = dtm.identifier.intern.to_sym
|
54
|
+
body.segment Eancom::Edifact::DTM.new(
|
55
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
56
|
+
date_time: dtm[key].date_time,
|
57
|
+
format: '102'
|
58
|
+
)
|
59
|
+
end
|
60
|
+
|
61
|
+
date_time_messages.each_with_index do |dtm, index|
|
62
|
+
next unless index == 2
|
63
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
64
|
+
key = dtm.identifier.intern.to_sym
|
65
|
+
body.segment Eancom::Edifact::DTM.new(
|
66
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
67
|
+
date_time: dtm[key].date_time,
|
68
|
+
format: '102'
|
69
|
+
)
|
70
|
+
end
|
71
|
+
|
63
72
|
|
64
73
|
# Supplier
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
)
|
72
|
-
else
|
73
|
-
'9'
|
74
|
-
end
|
74
|
+
nads = message.nads
|
75
|
+
nads.each_with_index do |nad, index|
|
76
|
+
next unless index == 0
|
77
|
+
|
78
|
+
structure = Eancom.find_structure(tag: 'NAD')
|
79
|
+
key = nad.identifier.intern.to_sym
|
75
80
|
body.segment Eancom::Edifact::NAD.new(
|
76
|
-
party_function_code_qualifier:
|
77
|
-
party_identifier:
|
78
|
-
|
81
|
+
party_function_code_qualifier: structure.dictionary_lookup(:party_function_code_qualifier, nad.identifier),
|
82
|
+
party_identifier: nad[key].party_identifier,
|
83
|
+
code_list_responsible_agency_code_1: '9'
|
79
84
|
)
|
80
85
|
end
|
81
86
|
|
82
87
|
# Buyer
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
supplier.code_list_responsible_agancy_code_1
|
89
|
-
)
|
90
|
-
else
|
91
|
-
'9'
|
92
|
-
end
|
88
|
+
nads.each_with_index do |nad, index|
|
89
|
+
next unless index == 1
|
90
|
+
|
91
|
+
structure = Eancom.find_structure(tag: 'NAD')
|
92
|
+
key = nad.identifier.intern.to_sym
|
93
93
|
body.segment Eancom::Edifact::NAD.new(
|
94
|
-
party_function_code_qualifier:
|
95
|
-
party_identifier:
|
96
|
-
|
94
|
+
party_function_code_qualifier: structure.dictionary_lookup(:party_function_code_qualifier, nad.identifier),
|
95
|
+
party_identifier: nad[key].party_identifier,
|
96
|
+
code_list_responsible_agency_code_1: '9'
|
97
97
|
)
|
98
98
|
end
|
99
99
|
|
100
100
|
# Reference Currency
|
101
101
|
if currency = message.currency
|
102
|
+
structure = Eancom.find_structure(tag: 'CUX')
|
102
103
|
body.segment Eancom::Edifact::CUX.new(
|
103
104
|
currency_identification_code_1: currency.currency_identification_code_1,
|
104
|
-
currency_type_code_qualifier_1:
|
105
|
-
|
105
|
+
currency_type_code_qualifier_1: structure.dictionary_lookup(:currency_type_code_qualifier_1,
|
106
|
+
currency.currency_type_code_qualifier_1),
|
107
|
+
currency_usage_code_qualifier_1: structure.dictionary_lookup(:currency_usage_code_qualifier_1, currency.currency_usage_code_qualifier_1)
|
106
108
|
)
|
107
109
|
end
|
108
110
|
|
109
111
|
# Location
|
110
112
|
if location = message.location
|
111
|
-
|
112
|
-
structure = Eancom.find_structure(tag: 'LOC')
|
113
|
-
structure.dictionary_lookup(
|
114
|
-
:code_list_responsible_agancy_code,
|
115
|
-
location.code_list_responsible_agancy_code
|
116
|
-
)
|
117
|
-
else
|
118
|
-
'9'
|
119
|
-
end
|
113
|
+
structure = Eancom.find_structure(tag: 'LOC')
|
120
114
|
body.segment Eancom::Edifact::LOC.new(
|
121
115
|
code_list_identification_code: location.code_list_identification_code,
|
122
|
-
|
123
|
-
location_function_qualifier:
|
116
|
+
code_list_responsible_agency_code: structure.dictionary_lookup(:code_list_responsible_agency_code, location.code_list_responsible_agency_code),
|
117
|
+
location_function_qualifier: structure.dictionary_lookup(:location_function_qualifier, location.location_function_qualifier),
|
124
118
|
location_name_code: location.location_name_code
|
125
119
|
)
|
126
120
|
end
|
127
121
|
|
128
|
-
|
129
|
-
|
122
|
+
date_time_messages.each_with_index do |dtm, index|
|
123
|
+
next unless index == 3
|
124
|
+
structure = Eancom.find_structure(tag: 'DTM')
|
125
|
+
key = dtm.identifier.intern.to_sym
|
130
126
|
body.segment Eancom::Edifact::DTM.new(
|
131
|
-
type:
|
132
|
-
date_time: date_time,
|
127
|
+
type: structure.dictionary_lookup(:type, dtm.identifier),
|
128
|
+
date_time: dtm[key].date_time,
|
133
129
|
format: '203'
|
134
130
|
)
|
135
131
|
end
|
@@ -142,53 +138,62 @@ Eancom::Definition.create(name: 'D96A', type: :slsrpt) do |document, config|
|
|
142
138
|
items.each_with_index do |item, index|
|
143
139
|
total_quantity += item.quantity.to_i
|
144
140
|
|
141
|
+
structure = Eancom.find_structure(tag: 'LIN')
|
145
142
|
body.segment Eancom::Edifact::LIN.new(
|
146
|
-
line_item_identifier_1:
|
143
|
+
line_item_identifier_1: (index + 1).to_s,
|
147
144
|
item_identifier: item.ean,
|
148
|
-
item_type_identification_code:
|
145
|
+
item_type_identification_code: structure.dictionary_lookup(:item_type_identification_code, item.item_type_identification_code)
|
149
146
|
)
|
150
147
|
|
151
|
-
|
148
|
+
references = item.references
|
149
|
+
references.each_with_index do |rff, index|
|
150
|
+
structure = Eancom.find_structure(tag: 'RFF')
|
151
|
+
key = rff.identifier.intern.to_sym
|
152
152
|
body.segment Eancom::Edifact::RFF.new(
|
153
|
-
reference_code_qualifier:
|
154
|
-
reference_identifier:
|
153
|
+
reference_code_qualifier: structure.dictionary_lookup(:reference_code_qualifier, rff.identifier),
|
154
|
+
reference_identifier: rff[key].reference_identifier
|
155
155
|
)
|
156
156
|
end
|
157
157
|
|
158
158
|
prices = item.prices
|
159
159
|
prices.each do |price|
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
160
|
+
next unless price = price.price
|
161
|
+
|
162
|
+
structure = Eancom.find_structure(tag: 'PRI')
|
163
|
+
body.segment Eancom::Edifact::PRI.new(
|
164
|
+
price_amount: price.price_amount,
|
165
|
+
price_code_qualifier: structure.dictionary_lookup(:price_code_qualifier, price.price_code_qualifier),
|
166
|
+
price_specification_code: structure.dictionary_lookup(:price_specification_code,
|
167
|
+
price.price_specification_code),
|
168
|
+
price_type_code: price.price_type_code
|
169
|
+
)
|
169
170
|
end
|
170
171
|
|
171
|
-
|
172
|
-
|
172
|
+
qty = item.quantities
|
173
|
+
qty.each_with_index do |qty, index|
|
174
|
+
structure = Eancom.find_structure(tag: 'QTY')
|
175
|
+
key = qty.identifier.intern.to_sym
|
173
176
|
body.segment Eancom::Edifact::QTY.new(
|
174
|
-
quantity_type_code_qualifier:
|
175
|
-
quantity:
|
176
|
-
measurement_unit_code:
|
177
|
+
quantity_type_code_qualifier: structure.dictionary_lookup(:quantity_type_code_qualifier, qty.identifier),
|
178
|
+
quantity: qty[key].quantity,
|
179
|
+
measurement_unit_code: structure.dictionary_lookup(:measurement_unit_code, qty.measurement_unit_code)
|
177
180
|
)
|
178
181
|
end
|
179
182
|
end
|
180
183
|
|
181
184
|
body.segment Eancom::Edifact::UNT.new(
|
182
|
-
number_of_segments_in_message:
|
183
|
-
message_reference_number: config.header.message_reference_number
|
185
|
+
number_of_segments_in_message: (document.total_segments + 2).to_s,
|
186
|
+
message_reference_number: config.header.message_reference_number
|
184
187
|
)
|
185
188
|
end
|
189
|
+
end
|
186
190
|
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
191
|
+
document.footer do |footer|
|
192
|
+
messages = config.body.messages
|
193
|
+
|
194
|
+
footer.segment Eancom::Edifact::UNZ.new(
|
195
|
+
interchange_control_count: messages.size.to_s,
|
196
|
+
interchange_control_reference: config.header.interchange_control_reference.to_s
|
197
|
+
)
|
193
198
|
end
|
194
199
|
end
|
data/eancom.gemspec
CHANGED
@@ -23,12 +23,9 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
24
|
spec.require_paths = ["lib"]
|
25
25
|
|
26
|
-
spec.add_development_dependency
|
27
|
-
spec.add_development_dependency
|
28
|
-
spec.add_development_dependency
|
29
|
-
spec.add_development_dependency
|
30
|
-
spec.add_development_dependency
|
31
|
-
spec.add_development_dependency 'rubocop'
|
32
|
-
spec.add_development_dependency 'simplecov'
|
33
|
-
spec.add_development_dependency 'timecop'
|
26
|
+
spec.add_development_dependency "pry"
|
27
|
+
spec.add_development_dependency "pry-remote"
|
28
|
+
spec.add_development_dependency "pry-nav"
|
29
|
+
spec.add_development_dependency "simplecov"
|
30
|
+
spec.add_development_dependency "timecop"
|
34
31
|
end
|
@@ -2,8 +2,7 @@ module Eancom
|
|
2
2
|
module Edifact
|
3
3
|
class Document
|
4
4
|
|
5
|
-
attr_accessor :header_element,
|
6
|
-
:body_element, :footer_element
|
5
|
+
attr_accessor :header_element, :body_element, :footer_element
|
7
6
|
|
8
7
|
def initialize
|
9
8
|
@header_element = Header.new()
|
@@ -35,6 +34,7 @@ module Eancom
|
|
35
34
|
@footer_element.segment(segment)
|
36
35
|
end
|
37
36
|
|
37
|
+
# Should header and footer segments be added to total_segments?
|
38
38
|
def total_segments
|
39
39
|
total = 0
|
40
40
|
total += @body_element.segments.count
|
@@ -12,7 +12,7 @@ module Eancom
|
|
12
12
|
|
13
13
|
def self.initialize_by_components(structure, array)
|
14
14
|
begin
|
15
|
-
new(structure.build_hash(array))
|
15
|
+
new(**structure.build_hash(array))
|
16
16
|
rescue StandardError => e
|
17
17
|
raise SegmentParserError.new(
|
18
18
|
"'Parser Error in structure #{structure.tag} with array #{array}.\n \
|
@@ -39,7 +39,7 @@ module Eancom
|
|
39
39
|
end
|
40
40
|
|
41
41
|
def to_s
|
42
|
-
string = array.map do |e|
|
42
|
+
string = array.map do |e|
|
43
43
|
e = e.compact
|
44
44
|
next if e.empty?
|
45
45
|
[e.join(component_delimiter)]
|