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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
|
# File 'lib/spree/active_shipping/ups_override.rb', line 4
def self.included(base)
base.class_eval do
def build_rate_request(origin, destination, packages, options={})
packages = Array(packages)
xml_request = XmlNode.new('RatingServiceSelectionRequest') do |root_node|
root_node << XmlNode.new('Request') do |request|
request << XmlNode.new('RequestAction', 'Rate')
request << XmlNode.new('RequestOption', 'Shop')
end
pickup_type = options[:pickup_type] || :daily_pickup
root_node << XmlNode.new('PickupType') do |pickup_type_node|
pickup_type_node << XmlNode.new('Code', ActiveMerchant::Shipping::UPS::PICKUP_CODES[pickup_type])
end
cc = options[:customer_classification] || ActiveMerchant::Shipping::UPS::DEFAULT_CUSTOMER_CLASSIFICATIONS[pickup_type]
root_node << XmlNode.new('CustomerClassification') do |cc_node|
cc_node << XmlNode.new('Code', ActiveMerchant::Shipping::UPS::CUSTOMER_CLASSIFICATIONS[cc])
end
root_node << XmlNode.new('Shipment') do |shipment|
shipment << build_location_node('Shipper', (options[:shipper] || origin), options)
shipment << build_location_node('ShipTo', destination, options)
if options[:shipper] and options[:shipper] != origin
shipment << build_location_node('ShipFrom', origin, options)
end
packages.each do |package|
imperial = ['US','LR','MM'].include?(origin.country_code(:alpha2))
shipment << XmlNode.new("Package") do |package_node|
package_node << XmlNode.new("PackagingType") do |packaging_type|
packaging_type << XmlNode.new("Code", '02')
end
package_node << XmlNode.new("Dimensions") do |dimensions|
dimensions << XmlNode.new("UnitOfMeasurement") do |units|
units << XmlNode.new("Code", imperial ? 'IN' : 'CM')
end
[:length,:width,:height].each do |axis|
value = ((imperial ? package.inches(axis) : package.cm(axis)).to_f*1000).round/1000.0 dimensions << XmlNode.new(axis.to_s.capitalize, [value,0.1].max)
end
end
package_node << XmlNode.new("PackageWeight") do |package_weight|
package_weight << XmlNode.new("UnitOfMeasurement") do |units|
units << XmlNode.new("Code", imperial ? 'LBS' : 'KGS')
end
value = ((imperial ? package.lbs : package.kgs).to_f*1000).round/1000.0 package_weight << XmlNode.new("Weight", [value,0.1].max)
end
end
end
if (origin_account = @options[:origin_account] || options[:origin_account])
shipment << XmlNode.new("RateInformation") do |rate_information|
rate_information << XmlNode.new("NegotiatedRatesIndicator", '')
end
end
end
end
xml_request.to_s
end
def build_time_in_transit_request(origin, destination, packages, options={})
packages = Array(packages)
xml_request = XmlNode.new('TimeInTransitRequest') do |root_node|
root_node << XmlNode.new('Request') do |request|
request << XmlNode.new('TransactionReference') do |transaction_reference|
transaction_reference << XmlNode.new('CustomerContext', 'Time in Transit')
transaction_reference << XmlNode.new('XpciVersion', '1.0002')
end
request << XmlNode.new('RequestAction', 'TimeInTransit')
end
root_node << XmlNode.new('TransitFrom') do |transit_from|
transit_from << XmlNode.new('AddressArtifactFormat') do |address_artifact_format|
address_artifact_format << XmlNode.new('PoliticalDivision2',origin.city)
address_artifact_format << XmlNode.new('PoliticalDivision1',origin.state)
address_artifact_format << XmlNode.new('CountryCode',origin.country_code(:alpha2))
address_artifact_format << XmlNode.new('PostcodePrimaryLow',origin.postal_code)
end
end
root_node << XmlNode.new('TransitTo') do |transit_to|
transit_to << XmlNode.new('AddressArtifactFormat') do |address_artifact_format|
address_artifact_format << XmlNode.new('PoliticalDivision2',destination.city)
address_artifact_format << XmlNode.new('PoliticalDivision1',destination.state)
address_artifact_format << XmlNode.new('CountryCode',destination.country_code(:alpha2))
address_artifact_format << XmlNode.new('PostcodePrimaryLow',destination.postal_code)
end
end
root_node << XmlNode.new("ShipmentWeight") do |shipment_weight|
shipment_weight << XmlNode.new("UnitOfMeasurement") do |units|
units << XmlNode.new("Code", 'LBS')
end
value = ((packages[0].lbs).to_f*1000).round/1000.0 shipment_weight << XmlNode.new("Weight", [value,0.1].max)
end
root_node << XmlNode.new("InvoiceLineTotal") do |invoice_line_total|
invoice_line_total << XmlNode.new("CurrencyCode","USD")
invoice_line_total << XmlNode.new("MonetaryValue","50")
end
root_node << XmlNode.new("PickupDate",Date.today.strftime("%Y%m%d"))
end
xml_request.to_s
end
def build_location_node(name,location,options={})
location_node = XmlNode.new(name) do |location_node|
location_node << XmlNode.new('PhoneNumber', location.phone.gsub(/[^\d]/,'')) unless location.phone.blank?
location_node << XmlNode.new('FaxNumber', location.fax.gsub(/[^\d]/,'')) unless location.fax.blank?
if name == 'Shipper' and (origin_account = @options[:origin_account] || options[:origin_account])
location_node << XmlNode.new('ShipperNumber', origin_account)
elsif name == 'ShipTo' and (destination_account = @options[:destination_account] || options[:destination_account])
location_node << XmlNode.new('ShipperAssignedIdentificationNumber', destination_account)
end
location_node << XmlNode.new('Address') do |address|
address << XmlNode.new("AddressLine1", location.address1) unless location.address1.blank?
address << XmlNode.new("AddressLine2", location.address2) unless location.address2.blank?
address << XmlNode.new("AddressLine3", location.address3) unless location.address3.blank?
address << XmlNode.new("City", location.city) unless location.city.blank?
address << XmlNode.new("StateProvinceCode", location.state) unless location.state.blank? address << XmlNode.new("PostalCode", location.postal_code) unless location.postal_code.blank?
address << XmlNode.new("CountryCode", location.country_code(:alpha2)) unless location.country_code(:alpha2).blank?
address << XmlNode.new("ResidentialAddressIndicator", true) unless location.commercial? end
end
end
def find_time_in_transit(origin, destination, packages, options={})
origin, destination = upsified_location(origin), upsified_location(destination)
options = @options.merge(options)
packages = Array(packages)
access_request = build_access_request
rate_request = build_time_in_transit_request(origin, destination, packages, options)
response = ssl_post("https://www.ups.com/ups.app/xml/TimeInTransit", "<?xml version=\"1.0\"?>"+access_request+"<?xml version=\"1.0\"?>"+rate_request)
parse_time_in_transit_response(origin, destination, packages,response, options)
end
def find_rates(origin, destination, packages, options={})
origin, destination = upsified_location(origin), upsified_location(destination)
options = @options.merge(options)
packages = Array(packages)
access_request = build_access_request
rate_request = build_rate_request(origin, destination, packages, options)
response = commit(:rates, save_request(access_request + rate_request), (options[:test] || false))
parse_rate_response(origin, destination, packages, response, options)
end
def parse_time_in_transit_response(origin, destination, packages, response, options={})
time_code_mapping = {
"1DA" => "01",
"2DA" => "02",
"GND" => "03",
"01" => "07",
"05" => "08",
"03" => "11",
"3DS" => "12",
"1DP" => "13",
"1DM" => "14",
"21" => "54",
"2DM" => "59"
}
rates = []
xml = REXML::Document.new(response)
success = response_success?(xml)
message = response_message(xml)
if success
rate_estimates = {}
xml.elements.each('/*/TransitResponse/ServiceSummary') do |service_summary|
service_code = service_summary.get_text('Service/Code').to_s
service_code_2 = time_code_mapping[service_code]
service_desc = service_summary.get_text('Service/Description').to_s
guaranteed_code = service_summary.get_text('Guaranteed/Code').to_s
business_transit_days = service_summary.get_text('EstimatedArrival/BusinessTransitDays').to_s
date = service_summary.get_text('EstimatedArrival/Date').to_s
rate_estimates[service_name_for(origin, service_code_2)] = {:service_code => service_code, :service_code_2 => service_code_2, :service_desc => service_desc,
:guaranteed_code => guaranteed_code, :business_transit_days => business_transit_days,
:date => date}
end
end
return rate_estimates
end
def parse_rate_response(origin, destination, packages, response, options={})
rates = []
xml = REXML::Document.new(response)
success = response_success?(xml)
message = response_message(xml)
transits = options[:transit]
if success
rate_estimates = []
xml.elements.each('/*/RatedShipment') do |rated_shipment|
service_code = rated_shipment.get_text('Service/Code').to_s
service = rated_shipment.get_text('Service/Code').to_s
negotiated_rate = rated_shipment.get_text('NegotiatedRates/NetSummaryCharges/GrandTotal/MonetaryValue').to_s
total_price = negotiated_rate.blank? ? rated_shipment.get_text('TotalCharges/MonetaryValue').to_s.to_f : negotiated_rate.to_f
currency = negotiated_rate.blank? ? rated_shipment.get_text('TotalCharges/CurrencyCode').to_s : rated_shipment.get_text('NegotiatedRates/NetSummaryCharges/GrandTotal/CurrencyCode').to_s
rate_estimates << ActiveMerchant::Shipping::RateEstimate.new(origin, destination, ActiveMerchant::Shipping::UPS.name,
service_name_for(origin, service_code),
:total_price => total_price,
:currency => currency,
:service_code => service_code,
:packages => packages
)
end
end
ActiveMerchant::Shipping::RateResponse.new(success, message, Hash.from_xml(response).values.first, :rates => rate_estimates, :xml => response, :request => last_request)
end
end
end
|