active_shipping 1.0.0.pre2 → 1.0.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.gitignore +12 -0
- data/.travis.yml +14 -0
- data/.yardopts +14 -0
- data/Gemfile +3 -0
- data/Gemfile.activesupport32 +4 -0
- data/Gemfile.activesupport40 +4 -0
- data/Gemfile.activesupport41 +4 -0
- data/Gemfile.activesupport42 +4 -0
- data/Rakefile +23 -0
- data/active_shipping.gemspec +32 -0
- data/lib/active_shipping.rb +1 -1
- data/lib/active_shipping/carrier.rb +1 -1
- data/lib/active_shipping/carriers/shipwire.rb +32 -35
- data/lib/active_shipping/carriers/ups.rb +2 -2
- data/lib/active_shipping/carriers/usps.rb +103 -101
- data/lib/active_shipping/label_response.rb +1 -1
- data/lib/active_shipping/rate_estimate.rb +76 -15
- data/lib/active_shipping/rate_response.rb +20 -0
- data/lib/active_shipping/response.rb +17 -0
- data/lib/active_shipping/shipment_packer.rb +2 -2
- data/lib/active_shipping/shipping_response.rb +24 -2
- data/lib/active_shipping/tracking_response.rb +65 -17
- data/lib/active_shipping/version.rb +1 -1
- data/shipit.rubygems.yml +1 -0
- data/test/credentials.yml +47 -0
- data/test/fixtures/files/label1.pdf +0 -0
- data/test/fixtures/files/ups-shipping-label.gif +0 -0
- data/test/fixtures/json/newzealandpost/domestic_book.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_default.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_error.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_poster.json +1 -0
- data/test/fixtures/json/newzealandpost/domestic_small_half_pound.json +1 -0
- data/test/fixtures/json/newzealandpost/international_book.json +1 -0
- data/test/fixtures/json/newzealandpost/international_new_zealand_wii.json +1 -0
- data/test/fixtures/json/newzealandpost/international_small_half_pound.json +1 -0
- data/test/fixtures/json/newzealandpost/international_wii.json +1 -0
- data/test/fixtures/xml/canadapost/example_request.xml +25 -0
- data/test/fixtures/xml/canadapost/example_response.xml +130 -0
- data/test/fixtures/xml/canadapost/example_response_error.xml +16 -0
- data/test/fixtures/xml/canadapost/example_response_french.xml +122 -0
- data/test/fixtures/xml/canadapost/example_response_with_nil_value.xml +164 -0
- data/test/fixtures/xml/canadapost/example_response_with_postal_outlet.xml +155 -0
- data/test/fixtures/xml/canadapost/example_response_with_postal_outlet_french.xml +274 -0
- data/test/fixtures/xml/canadapost/example_response_with_strange_delivery_date.xml +130 -0
- data/test/fixtures/xml/canadapost_pws/dnc_tracking_details_en.xml +112 -0
- data/test/fixtures/xml/canadapost_pws/merchant_details_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/merchant_details_response.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/option_response.xml +13 -0
- data/test/fixtures/xml/canadapost_pws/option_response_no_conflicts.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/rates_info.xml +190 -0
- data/test/fixtures/xml/canadapost_pws/rates_info_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/receipt_response.xml +42 -0
- data/test/fixtures/xml/canadapost_pws/receipt_response_no_priced_options.xml +36 -0
- data/test/fixtures/xml/canadapost_pws/register_token_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/register_token_response.xml +3 -0
- data/test/fixtures/xml/canadapost_pws/service_options_response.xml +42 -0
- data/test/fixtures/xml/canadapost_pws/services_error.xml +6 -0
- data/test/fixtures/xml/canadapost_pws/services_response.xml +32 -0
- data/test/fixtures/xml/canadapost_pws/shipment_domestic.xml +69 -0
- data/test/fixtures/xml/canadapost_pws/shipment_response.xml +20 -0
- data/test/fixtures/xml/canadapost_pws/shipment_us.xml +69 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_en.xml +152 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_en_error.xml +7 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_en_undelivered.xml +116 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_fr.xml +156 -0
- data/test/fixtures/xml/canadapost_pws/tracking_details_no_expected_delivery_date.xml +40 -0
- data/test/fixtures/xml/fedex/freight_rate_request.xml +82 -0
- data/test/fixtures/xml/fedex/freight_rate_response.xml +506 -0
- data/test/fixtures/xml/fedex/invalid_fedex_reply.xml +27 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_commercial_rate_request.xml +79 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_rate_request.xml +80 -0
- data/test/fixtures/xml/fedex/ottawa_to_beverly_hills_rate_response.xml +214 -0
- data/test/fixtures/xml/fedex/raterequest_reply.xml +213 -0
- data/test/fixtures/xml/fedex/reply_without_notifications.xml +185 -0
- data/test/fixtures/xml/fedex/tracking_request.xml +27 -0
- data/test/fixtures/xml/fedex/tracking_response.xml +151 -0
- data/test/fixtures/xml/fedex/tracking_response_empty_destination.xml +76 -0
- data/test/fixtures/xml/fedex/tracking_response_no_destination.xml +139 -0
- data/test/fixtures/xml/fedex/tracking_response_no_ship_time.xml +150 -0
- data/test/fixtures/xml/fedex/tracking_response_with_estimated_delivery_date.xml +95 -0
- data/test/fixtures/xml/fedex/tracking_response_with_shipper_address.xml +71 -0
- data/test/fixtures/xml/fedex/unknown_fedex_document_reply.xml +3 -0
- data/test/fixtures/xml/kunaki/invalid_state_response.xml +3 -0
- data/test/fixtures/xml/kunaki/no_valid_items_response.xml +3 -0
- data/test/fixtures/xml/kunaki/successful_rates_response.xml +3 -0
- data/test/fixtures/xml/kunaki/unsuccessful_rates_response.xml +9 -0
- data/test/fixtures/xml/shipwire/international_rates_response.xml +17 -0
- data/test/fixtures/xml/shipwire/new_carrier_rate_response.xml +18 -0
- data/test/fixtures/xml/shipwire/no_rates_response.xml +7 -0
- data/test/fixtures/xml/shipwire/rates_response.xml +36 -0
- data/test/fixtures/xml/shipwire/rates_response_no_estimate.xml +14 -0
- data/test/fixtures/xml/stamps/authenticate_user_request.xml +15 -0
- data/test/fixtures/xml/stamps/authenticate_user_response.xml +10 -0
- data/test/fixtures/xml/stamps/cleanse_address_request.xml +19 -0
- data/test/fixtures/xml/stamps/cleanse_address_response.xml +27 -0
- data/test/fixtures/xml/stamps/create_indicium_request.xml +69 -0
- data/test/fixtures/xml/stamps/create_indicium_response.xml +40 -0
- data/test/fixtures/xml/stamps/expired_authenticator_response.xml +15 -0
- data/test/fixtures/xml/stamps/get_account_info_request.xml +11 -0
- data/test/fixtures/xml/stamps/get_account_info_response.xml +36 -0
- data/test/fixtures/xml/stamps/get_purchase_status_request.xml +12 -0
- data/test/fixtures/xml/stamps/get_purchase_status_response.xml +16 -0
- data/test/fixtures/xml/stamps/get_rates_request.xml +19 -0
- data/test/fixtures/xml/stamps/get_rates_response.xml +351 -0
- data/test/fixtures/xml/stamps/purchase_postage_request.xml +13 -0
- data/test/fixtures/xml/stamps/purchase_postage_response.xml +17 -0
- data/test/fixtures/xml/stamps/track_shipment_request.xml +12 -0
- data/test/fixtures/xml/stamps/track_shipment_response.xml +45 -0
- data/test/fixtures/xml/ups/delivered_shipment_with_refund.xml +290 -0
- data/test/fixtures/xml/ups/delivered_shipment_without_events_tracking_response.xml +62 -0
- data/test/fixtures/xml/ups/example_tracking_response.xml +53 -0
- data/test/fixtures/xml/ups/in_transit_shipment.xml +183 -0
- data/test/fixtures/xml/ups/out_for_delivery_shipment.xml +165 -0
- data/test/fixtures/xml/ups/shipment_accept_response.xml +42 -0
- data/test/fixtures/xml/ups/shipment_confirm_response.xml +33 -0
- data/test/fixtures/xml/ups/shipment_from_tiger_direct.xml +222 -0
- data/test/fixtures/xml/ups/test_real_home_as_residential_destination_response.xml +1 -0
- data/test/fixtures/xml/ups/test_real_home_as_residential_destination_response_with_insured.xml +289 -0
- data/test/fixtures/xml/ups/test_real_home_as_residential_destination_with_origin_account_response.xml +311 -0
- data/test/fixtures/xml/ups/triple_accept_response.xml +72 -0
- data/test/fixtures/xml/ups/triple_confirm_response.xml +32 -0
- data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_commercial_base_rate_response.xml +2 -0
- data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_commercial_plus_rate_response.xml +258 -0
- data/test/fixtures/xml/usps/beverly_hills_to_new_york_book_rate_response.xml +108 -0
- data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_commercial_base_rate_response.xml +84 -0
- data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_commercial_plus_rate_response.xml +212 -0
- data/test/fixtures/xml/usps/beverly_hills_to_ottawa_american_wii_rate_response.xml +230 -0
- data/test/fixtures/xml/usps/delivered_tracking_response.xml +11 -0
- data/test/fixtures/xml/usps/first_class_packages_with_invalid_mail_type_response.xml +12 -0
- data/test/fixtures/xml/usps/first_class_packages_with_mail_type_response.xml +16 -0
- data/test/fixtures/xml/usps/first_class_packages_without_mail_type_response.xml +12 -0
- data/test/fixtures/xml/usps/invalid_xml_tracking_response_error.xml +2 -0
- data/test/fixtures/xml/usps/tracking_request.xml +3 -0
- data/test/fixtures/xml/usps/tracking_response.xml +13 -0
- data/test/fixtures/xml/usps/tracking_response_failure.xml +3 -0
- data/test/fixtures/xml/usps/tracking_response_not_available.xml +12 -0
- data/test/fixtures/xml/usps/tracking_response_test_error.xml +8 -0
- data/test/fixtures/xml/usps/us_rate_request.xml +18 -0
- data/test/fixtures/xml/usps/world_rate_request_with_value.xml +20 -0
- data/test/fixtures/xml/usps/world_rate_request_without_value.xml +20 -0
- data/test/remote/canada_post_pws_platform_test.rb +246 -0
- data/test/remote/canada_post_pws_test.rb +171 -0
- data/test/remote/canada_post_test.rb +53 -0
- data/test/remote/fedex_test.rb +216 -0
- data/test/remote/kunaki_test.rb +36 -0
- data/test/remote/new_zealand_post_test.rb +147 -0
- data/test/remote/shipwire_test.rb +82 -0
- data/test/remote/stamps_test.rb +394 -0
- data/test/remote/ups_test.rb +257 -0
- data/test/remote/usps_test.rb +235 -0
- data/test/test_helper.rb +220 -0
- data/test/unit/carriers/benchmark_test.rb +18 -0
- data/test/unit/carriers/canada_post_pws_rating_test.rb +349 -0
- data/test/unit/carriers/canada_post_pws_register_test.rb +75 -0
- data/test/unit/carriers/canada_post_pws_shipping_test.rb +244 -0
- data/test/unit/carriers/canada_post_pws_tracking_test.rb +154 -0
- data/test/unit/carriers/canada_post_test.rb +145 -0
- data/test/unit/carriers/fedex_test.rb +408 -0
- data/test/unit/carriers/kunaki_test.rb +52 -0
- data/test/unit/carriers/new_zealand_post_test.rb +174 -0
- data/test/unit/carriers/shipwire_test.rb +187 -0
- data/test/unit/carriers/stamps_test.rb +241 -0
- data/test/unit/carriers/ups_test.rb +311 -0
- data/test/unit/carriers/usps_test.rb +484 -0
- data/test/unit/carriers_test.rb +17 -0
- data/test/unit/label_response_test.rb +15 -0
- data/test/unit/location_test.rb +138 -0
- data/test/unit/package_test.rb +68 -0
- data/test/unit/rate_estimate_test.rb +34 -0
- data/test/unit/response_test.rb +14 -0
- data/test/unit/shipment_packer_test.rb +174 -0
- metadata +331 -35
- metadata.gz.sig +0 -0
- data/lib/vendor/quantified/MIT-LICENSE +0 -22
- data/lib/vendor/quantified/README.markdown +0 -49
- data/lib/vendor/quantified/Rakefile +0 -13
- data/lib/vendor/quantified/init.rb +0 -0
- data/lib/vendor/quantified/lib/quantified.rb +0 -6
- data/lib/vendor/quantified/lib/quantified/attribute.rb +0 -211
- data/lib/vendor/quantified/lib/quantified/length.rb +0 -20
- data/lib/vendor/quantified/lib/quantified/mass.rb +0 -19
- data/lib/vendor/quantified/test/length_test.rb +0 -94
- data/lib/vendor/quantified/test/mass_test.rb +0 -96
- data/lib/vendor/quantified/test/test_helper.rb +0 -19
@@ -0,0 +1,156 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<tracking-detail xmlns="http://www.canadapost.ca/ws/track">
|
3
|
+
<pin>1371134583769923</pin>
|
4
|
+
<active-exists />
|
5
|
+
<archive-exists>1</archive-exists>
|
6
|
+
<changed-expected-date>2011-02-11</changed-expected-date>
|
7
|
+
<destination-postal-id>G1K4M7</destination-postal-id>
|
8
|
+
<expected-delivery-date>2011-02-01</expected-delivery-date>
|
9
|
+
<changed-expected-delivery-reason>Erreur d'adressage du client.
|
10
|
+
Tentative de correction</changed-expected-delivery-reason>
|
11
|
+
<mailed-by-customer-number />
|
12
|
+
<mailed-on-behalf-of-customer-number>0001371134</mailed-on-behalf-of-customer-number>
|
13
|
+
<original-pin />
|
14
|
+
<service-name>Xpresspost</service-name>
|
15
|
+
<service-name-2>Xpresspost</service-name-2>
|
16
|
+
<customer-ref-1>955-0398</customer-ref-1>
|
17
|
+
<customer-ref-2 />
|
18
|
+
<return-pin />
|
19
|
+
<signature-image-exists>false</signature-image-exists>
|
20
|
+
<suppress-signature>false</suppress-signature>
|
21
|
+
<delivery-options>
|
22
|
+
<item>
|
23
|
+
<delivery-option>CH_SGN_OPTION</delivery-option>
|
24
|
+
<delivery-option-description>Signature Requise</delivery-option-description>
|
25
|
+
</item>
|
26
|
+
</delivery-options>
|
27
|
+
<significant-events>
|
28
|
+
<occurrence>
|
29
|
+
<event-identifier>1496</event-identifier>
|
30
|
+
<event-date>2011-02-03</event-date>
|
31
|
+
<event-time>11:59:59</event-time>
|
32
|
+
<event-time-zone>EST</event-time-zone>
|
33
|
+
<event-description>Article livré avec succès</event-description>
|
34
|
+
<signatory-name>HETU</signatory-name>
|
35
|
+
<event-site>SAINTE-FOY</event-site>
|
36
|
+
<event-province>QC</event-province>
|
37
|
+
<event-retail-location-id />
|
38
|
+
<event-retail-name />
|
39
|
+
</occurrence>
|
40
|
+
<occurrence>
|
41
|
+
<event-identifier>20</event-identifier>
|
42
|
+
<event-date>2011-02-03</event-date>
|
43
|
+
<event-time>11:59:59</event-time>
|
44
|
+
<event-time-zone>EST</event-time-zone>
|
45
|
+
<event-description>Image de la signature enregistrée pour
|
46
|
+
consultation en ligne</event-description>
|
47
|
+
<signatory-name>HETU</signatory-name>
|
48
|
+
<event-site>SAINTE-FOY</event-site>
|
49
|
+
<event-province>QC</event-province>
|
50
|
+
<event-retail-location-id />
|
51
|
+
<event-retail-name />
|
52
|
+
</occurrence>
|
53
|
+
<occurrence>
|
54
|
+
<event-identifier>0174</event-identifier>
|
55
|
+
<event-date>2011-02-03</event-date>
|
56
|
+
<event-time>08:27:43</event-time>
|
57
|
+
<event-time-zone>EST</event-time-zone>
|
58
|
+
<event-description>Article sorti pour livraison</event-description>
|
59
|
+
<signatory-name />
|
60
|
+
<event-site>SAINTE-FOY</event-site>
|
61
|
+
<event-province>QC</event-province>
|
62
|
+
<event-retail-location-id />
|
63
|
+
<event-retail-name />
|
64
|
+
</occurrence>
|
65
|
+
<occurrence>
|
66
|
+
<event-identifier>0100</event-identifier>
|
67
|
+
<event-date>2011-02-02</event-date>
|
68
|
+
<event-time>14:45:48</event-time>
|
69
|
+
<event-time-zone>EST</event-time-zone>
|
70
|
+
<event-description>Article traité à l'installation postale</event-description>
|
71
|
+
<signatory-name />
|
72
|
+
<event-site>QUEBEC</event-site>
|
73
|
+
<event-province>QC</event-province>
|
74
|
+
<event-retail-location-id />
|
75
|
+
<event-retail-name />
|
76
|
+
</occurrence>
|
77
|
+
<occurrence>
|
78
|
+
<event-identifier>0173</event-identifier>
|
79
|
+
<event-date>2011-02-02</event-date>
|
80
|
+
<event-time>06:19:57</event-time>
|
81
|
+
<event-time-zone>EST</event-time-zone>
|
82
|
+
<event-description>Erreur d'adressage du client; tentative de
|
83
|
+
correction. Délai possible</event-description>
|
84
|
+
<signatory-name />
|
85
|
+
<event-site>QUEBEC</event-site>
|
86
|
+
<event-province>QC</event-province>
|
87
|
+
<event-retail-location-id />
|
88
|
+
<event-retail-name />
|
89
|
+
</occurrence>
|
90
|
+
<occurrence>
|
91
|
+
<event-identifier>1496</event-identifier>
|
92
|
+
<event-date>2011-02-01</event-date>
|
93
|
+
<event-time>07:59:52</event-time>
|
94
|
+
<event-time-zone>EST</event-time-zone>
|
95
|
+
<event-description>Article livré avec succès</event-description>
|
96
|
+
<signatory-name>R GREGOIRE</signatory-name>
|
97
|
+
<event-site>QUEBEC</event-site>
|
98
|
+
<event-province>QC</event-province>
|
99
|
+
<event-retail-location-id />
|
100
|
+
<event-retail-name />
|
101
|
+
</occurrence>
|
102
|
+
<occurrence>
|
103
|
+
<event-identifier>20</event-identifier>
|
104
|
+
<event-date>2011-02-01</event-date>
|
105
|
+
<event-time>07:59:52</event-time>
|
106
|
+
<event-time-zone>EST</event-time-zone>
|
107
|
+
<event-description>Image de la signature enregistrée pour
|
108
|
+
consultation en ligne</event-description>
|
109
|
+
<signatory-name>R GREGOIRE</signatory-name>
|
110
|
+
<event-site>QUEBEC</event-site>
|
111
|
+
<event-province>QC</event-province>
|
112
|
+
<event-retail-location-id />
|
113
|
+
<event-retail-name />
|
114
|
+
</occurrence>
|
115
|
+
<occurrence>
|
116
|
+
<event-identifier>0500</event-identifier>
|
117
|
+
<event-date>2011-02-01</event-date>
|
118
|
+
<event-time>07:51:23</event-time>
|
119
|
+
<event-time-zone>EST</event-time-zone>
|
120
|
+
<event-description>Sorti pour livraison</event-description>
|
121
|
+
<signatory-name />
|
122
|
+
<event-site>QUEBEC</event-site>
|
123
|
+
<event-province>QC</event-province>
|
124
|
+
<event-retail-location-id />
|
125
|
+
<event-retail-name />
|
126
|
+
</occurrence>
|
127
|
+
<occurrence>
|
128
|
+
<event-identifier>2300</event-identifier>
|
129
|
+
<event-date>2011-01-31</event-date>
|
130
|
+
<event-time>17:06:02</event-time>
|
131
|
+
<event-time-zone>EST</event-time-zone>
|
132
|
+
<event-description>Article ramassé par Postes Canada</event-description>
|
133
|
+
<signatory-name />
|
134
|
+
<event-site>MONTREAL</event-site>
|
135
|
+
<event-province>QC</event-province>
|
136
|
+
<event-retail-location-id />
|
137
|
+
<event-retail-name />
|
138
|
+
</occurrence>
|
139
|
+
<occurrence>
|
140
|
+
<event-identifier>3000</event-identifier>
|
141
|
+
<event-date>2011-01-31</event-date>
|
142
|
+
<event-time>14:34:57</event-time>
|
143
|
+
<event-time-zone>EST</event-time-zone>
|
144
|
+
<event-description>Postes Canada a reçu l'information concernant
|
145
|
+
la commande</event-description>
|
146
|
+
<signatory-name />
|
147
|
+
<event-site>LACHINE</event-site>
|
148
|
+
<event-province>QC</event-province>
|
149
|
+
<event-retail-location-id />
|
150
|
+
<event-retail-name />
|
151
|
+
</occurrence>
|
152
|
+
</significant-events>
|
153
|
+
</tracking-detail>
|
154
|
+
|
155
|
+
|
156
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<tracking-detail xmlns="http://www.canadapost.ca/ws/track">
|
3
|
+
<pin>8213295707205355</pin>
|
4
|
+
<active-exists>1</active-exists>
|
5
|
+
<archive-exists/>
|
6
|
+
<changed-expected-date/>
|
7
|
+
<destination-postal-id>J7Y0E4</destination-postal-id>
|
8
|
+
<expected-delivery-date/>
|
9
|
+
<changed-expected-delivery-reason/>
|
10
|
+
<mailed-by-customer-number>0008213295</mailed-by-customer-number>
|
11
|
+
<mailed-on-behalf-of-customer-number>0008213295</mailed-on-behalf-of-customer-number>
|
12
|
+
<original-pin/>
|
13
|
+
<service-name>Expedited Parcels</service-name>
|
14
|
+
<service-name-2>Colis accélérés</service-name-2>
|
15
|
+
<customer-ref-1/>
|
16
|
+
<customer-ref-2/>
|
17
|
+
<return-pin/>
|
18
|
+
<signature-image-exists>false</signature-image-exists>
|
19
|
+
<suppress-signature>false</suppress-signature>
|
20
|
+
<delivery-options>
|
21
|
+
<item>
|
22
|
+
<delivery-option>CH_SGN_OPTION</delivery-option>
|
23
|
+
<delivery-option-description>Signature Required</delivery-option-description>
|
24
|
+
</item>
|
25
|
+
</delivery-options>
|
26
|
+
<significant-events>
|
27
|
+
<occurrence>
|
28
|
+
<event-identifier>3000</event-identifier>
|
29
|
+
<event-date>2014-01-26</event-date>
|
30
|
+
<event-time>20:18:06</event-time>
|
31
|
+
<event-time-zone>EST</event-time-zone>
|
32
|
+
<event-description>Electronic information submitted by shipper</event-description>
|
33
|
+
<signatory-name/>
|
34
|
+
<event-site>MAPLE</event-site>
|
35
|
+
<event-province>ON</event-province>
|
36
|
+
<event-retail-location-id/>
|
37
|
+
<event-retail-name/>
|
38
|
+
</occurrence>
|
39
|
+
</significant-events>
|
40
|
+
</tracking-detail>
|
@@ -0,0 +1,82 @@
|
|
1
|
+
<RateRequest xmlns="http://fedex.com/ws/rate/v13">
|
2
|
+
<WebAuthenticationDetail>
|
3
|
+
<UserCredential>
|
4
|
+
<Key>1111</Key>
|
5
|
+
<Password>2222</Password>
|
6
|
+
</UserCredential>
|
7
|
+
</WebAuthenticationDetail>
|
8
|
+
<ClientDetail>
|
9
|
+
<AccountNumber>3333</AccountNumber>
|
10
|
+
<MeterNumber>4444</MeterNumber>
|
11
|
+
</ClientDetail>
|
12
|
+
<TransactionDetail>
|
13
|
+
<CustomerTransactionId>ActiveShipping</CustomerTransactionId>
|
14
|
+
</TransactionDetail>
|
15
|
+
<Version>
|
16
|
+
<ServiceId>crs</ServiceId>
|
17
|
+
<Major>13</Major>
|
18
|
+
<Intermediate>0</Intermediate>
|
19
|
+
<Minor>0</Minor>
|
20
|
+
</Version>
|
21
|
+
<ReturnTransitAndCommit>true</ReturnTransitAndCommit>
|
22
|
+
<VariableOptions>SATURDAY_DELIVERY</VariableOptions>
|
23
|
+
<RequestedShipment>
|
24
|
+
<ShipTimestamp>2013-11-01T14:04:01-07:00</ShipTimestamp>
|
25
|
+
<Shipper>
|
26
|
+
<Address>
|
27
|
+
<StreetLines>1202 Chalet Ln</StreetLines>
|
28
|
+
<StreetLines>Do Not Delete - Test Account</StreetLines>
|
29
|
+
<City>Harrison</City>
|
30
|
+
<PostalCode>72601</PostalCode>
|
31
|
+
<CountryCode>US</CountryCode>
|
32
|
+
<Residential>true</Residential>
|
33
|
+
</Address>
|
34
|
+
</Shipper>
|
35
|
+
<Recipient>
|
36
|
+
<Address>
|
37
|
+
<StreetLines>110 Laurier Avenue West</StreetLines>
|
38
|
+
<City>Ottawa</City>
|
39
|
+
<PostalCode>K1P 1J1</PostalCode>
|
40
|
+
<CountryCode>CA</CountryCode>
|
41
|
+
<Residential>true</Residential>
|
42
|
+
</Address>
|
43
|
+
</Recipient>
|
44
|
+
<ShippingChargesPayment>
|
45
|
+
<PaymentType>SENDER</PaymentType>
|
46
|
+
<Payor>
|
47
|
+
<ResponsibleParty>
|
48
|
+
<AccountNumber>5555</AccountNumber>
|
49
|
+
</ResponsibleParty>
|
50
|
+
</Payor>
|
51
|
+
</ShippingChargesPayment>
|
52
|
+
<FreightShipmentDetail>
|
53
|
+
<FedExFreightAccountNumber>5555</FedExFreightAccountNumber>
|
54
|
+
<FedExFreightBillingContactAndAddress>
|
55
|
+
<Address>
|
56
|
+
<StreetLines>2000 Freight LTL Testing</StreetLines>
|
57
|
+
<StreetLines>Do Not Delete - Test Account</StreetLines>
|
58
|
+
<City>Harrison</City>
|
59
|
+
<PostalCode>72601</PostalCode>
|
60
|
+
<CountryCode>US</CountryCode>
|
61
|
+
<Residential>true</Residential>
|
62
|
+
</Address>
|
63
|
+
</FedExFreightBillingContactAndAddress>
|
64
|
+
<Role>SHIPPER</Role>
|
65
|
+
<LineItems>
|
66
|
+
<FreightClass>CLASS_050</FreightClass>
|
67
|
+
<Packaging>PALLET</Packaging>
|
68
|
+
<Weight>
|
69
|
+
<Units>LB</Units>
|
70
|
+
<Value>7.5</Value>
|
71
|
+
</Weight>
|
72
|
+
<Dimensions>
|
73
|
+
<Length>15</Length>
|
74
|
+
<Width>10</Width>
|
75
|
+
<Height>5</Height>
|
76
|
+
<Units>IN</Units>
|
77
|
+
</Dimensions>
|
78
|
+
</LineItems>
|
79
|
+
</FreightShipmentDetail>
|
80
|
+
<RateRequestTypes>ACCOUNT</RateRequestTypes>
|
81
|
+
</RequestedShipment>
|
82
|
+
</RateRequest>
|
@@ -0,0 +1,506 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<v13:RateReply xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v13="http://fedex.com/ws/rate/v13" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
3
|
+
<v13:HighestSeverity>SUCCESS</v13:HighestSeverity>
|
4
|
+
<v13:Notifications>
|
5
|
+
<v13:Severity>SUCCESS</v13:Severity>
|
6
|
+
<v13:Source>crs</v13:Source>
|
7
|
+
<v13:Code>0</v13:Code>
|
8
|
+
<v13:Message>Request was successfully processed. </v13:Message>
|
9
|
+
<v13:LocalizedMessage>Request was successfully processed. </v13:LocalizedMessage>
|
10
|
+
</v13:Notifications>
|
11
|
+
<v13:TransactionDetail>
|
12
|
+
<v13:CustomerTransactionId>ActiveShipping</v13:CustomerTransactionId>
|
13
|
+
</v13:TransactionDetail>
|
14
|
+
<v13:Version>
|
15
|
+
<v13:ServiceId>crs</v13:ServiceId>
|
16
|
+
<v13:Major>13</v13:Major>
|
17
|
+
<v13:Intermediate>0</v13:Intermediate>
|
18
|
+
<v13:Minor>0</v13:Minor>
|
19
|
+
</v13:Version>
|
20
|
+
<v13:RateReplyDetails>
|
21
|
+
<v13:ServiceType>FEDEX_FREIGHT_ECONOMY</v13:ServiceType>
|
22
|
+
<v13:DeliveryDayOfWeek>THU</v13:DeliveryDayOfWeek>
|
23
|
+
<v13:DeliveryTimestamp>2013-11-07T17:00:00-04:00</v13:DeliveryTimestamp>
|
24
|
+
<v13:CommitDetails>
|
25
|
+
<v13:ServiceType>FEDEX_FREIGHT_ECONOMY</v13:ServiceType>
|
26
|
+
<v13:CommitTimestamp>2013-11-07T17:00:00-04:00</v13:CommitTimestamp>
|
27
|
+
<v13:DayOfWeek>THU</v13:DayOfWeek>
|
28
|
+
<v13:TransitTime>FOUR_DAYS</v13:TransitTime>
|
29
|
+
<v13:BrokerToDestinationDays>0</v13:BrokerToDestinationDays>
|
30
|
+
<v13:FreightCommitDetail>
|
31
|
+
<v13:OriginDetail>
|
32
|
+
<v13:AdditionalDays>0</v13:AdditionalDays>
|
33
|
+
<v13:LocalService>FEDEX_FREIGHT_ECONOMY</v13:LocalService>
|
34
|
+
<v13:LocalDistance>
|
35
|
+
<v13:Value>2.0</v13:Value>
|
36
|
+
<v13:Units>MI</v13:Units>
|
37
|
+
</v13:LocalDistance>
|
38
|
+
<v13:LocalDuration>P0DT00H03M</v13:LocalDuration>
|
39
|
+
<v13:LocalServiceScheduling>STANDARD</v13:LocalServiceScheduling>
|
40
|
+
<v13:Location>HRO</v13:Location>
|
41
|
+
<v13:ContactAndAddress>
|
42
|
+
<v13:Contact>
|
43
|
+
<v13:PersonName>FRED GARRY</v13:PersonName>
|
44
|
+
<v13:PhoneNumber>800-874-4723</v13:PhoneNumber>
|
45
|
+
<v13:FaxNumber>870-741-7325</v13:FaxNumber>
|
46
|
+
</v13:Contact>
|
47
|
+
<v13:Address>
|
48
|
+
<v13:StreetLines>2200 FORWARD DR</v13:StreetLines>
|
49
|
+
<v13:City>HARRISON</v13:City>
|
50
|
+
<v13:StateOrProvinceCode>AR</v13:StateOrProvinceCode>
|
51
|
+
<v13:PostalCode>72601-2004</v13:PostalCode>
|
52
|
+
<v13:CountryCode>US</v13:CountryCode>
|
53
|
+
<v13:Residential>false</v13:Residential>
|
54
|
+
</v13:Address>
|
55
|
+
</v13:ContactAndAddress>
|
56
|
+
</v13:OriginDetail>
|
57
|
+
<v13:DestinationDetail>
|
58
|
+
<v13:AdditionalDays>0</v13:AdditionalDays>
|
59
|
+
<v13:LocalService>FEDEX_FREIGHT_ECONOMY</v13:LocalService>
|
60
|
+
<v13:LocalDistance>
|
61
|
+
<v13:Value>0.0</v13:Value>
|
62
|
+
<v13:Units>MI</v13:Units>
|
63
|
+
</v13:LocalDistance>
|
64
|
+
<v13:LocalServiceScheduling>STANDARD</v13:LocalServiceScheduling>
|
65
|
+
<v13:GatewayLocationId>NTO</v13:GatewayLocationId>
|
66
|
+
<v13:Location>OTW</v13:Location>
|
67
|
+
<v13:ContactAndAddress>
|
68
|
+
<v13:Contact>
|
69
|
+
<v13:PersonName>CHRIS LACHANCE</v13:PersonName>
|
70
|
+
<v13:PhoneNumber>888-219-6413</v13:PhoneNumber>
|
71
|
+
<v13:FaxNumber>613-745-8004</v13:FaxNumber>
|
72
|
+
</v13:Contact>
|
73
|
+
<v13:Address>
|
74
|
+
<v13:StreetLines>1740 COMSTOCK ROAD</v13:StreetLines>
|
75
|
+
<v13:City>GLOUCESTER</v13:City>
|
76
|
+
<v13:StateOrProvinceCode>ON</v13:StateOrProvinceCode>
|
77
|
+
<v13:PostalCode>K1B5L2</v13:PostalCode>
|
78
|
+
<v13:CountryCode>CA</v13:CountryCode>
|
79
|
+
<v13:Residential>false</v13:Residential>
|
80
|
+
</v13:Address>
|
81
|
+
</v13:ContactAndAddress>
|
82
|
+
</v13:DestinationDetail>
|
83
|
+
<v13:TotalDistance>
|
84
|
+
<v13:Value>1635.0</v13:Value>
|
85
|
+
<v13:Units>MI</v13:Units>
|
86
|
+
</v13:TotalDistance>
|
87
|
+
</v13:FreightCommitDetail>
|
88
|
+
</v13:CommitDetails>
|
89
|
+
<v13:IneligibleForMoneyBackGuarantee>true</v13:IneligibleForMoneyBackGuarantee>
|
90
|
+
<v13:TransitTime>FOUR_DAYS</v13:TransitTime>
|
91
|
+
<v13:ActualRateType>PAYOR_ACCOUNT_SHIPMENT</v13:ActualRateType>
|
92
|
+
<v13:RatedShipmentDetails>
|
93
|
+
<v13:ShipmentRateDetail>
|
94
|
+
<v13:RateType>PAYOR_ACCOUNT_SHIPMENT</v13:RateType>
|
95
|
+
<v13:RateScale>*FXF 501 CN 07/01 13 LD 06122</v13:RateScale>
|
96
|
+
<v13:RatedWeightMethod>FREIGHT_MINIMUM</v13:RatedWeightMethod>
|
97
|
+
<v13:CurrencyExchangeRate>
|
98
|
+
<v13:FromCurrency>USD</v13:FromCurrency>
|
99
|
+
<v13:IntoCurrency>CAD</v13:IntoCurrency>
|
100
|
+
<v13:Rate>1.07</v13:Rate>
|
101
|
+
</v13:CurrencyExchangeRate>
|
102
|
+
<v13:DimDivisor>0</v13:DimDivisor>
|
103
|
+
<v13:FuelSurchargePercent>23.1</v13:FuelSurchargePercent>
|
104
|
+
<v13:TotalBillingWeight>
|
105
|
+
<v13:Units>LB</v13:Units>
|
106
|
+
<v13:Value>7.5</v13:Value>
|
107
|
+
</v13:TotalBillingWeight>
|
108
|
+
<v13:TotalDimWeight>
|
109
|
+
<v13:Units>LB</v13:Units>
|
110
|
+
<v13:Value>0.0</v13:Value>
|
111
|
+
</v13:TotalDimWeight>
|
112
|
+
<v13:TotalBaseCharge>
|
113
|
+
<v13:Currency>USD</v13:Currency>
|
114
|
+
<v13:Amount>578.8</v13:Amount>
|
115
|
+
</v13:TotalBaseCharge>
|
116
|
+
<v13:TotalFreightDiscounts>
|
117
|
+
<v13:Currency>USD</v13:Currency>
|
118
|
+
<v13:Amount>231.52</v13:Amount>
|
119
|
+
</v13:TotalFreightDiscounts>
|
120
|
+
<v13:TotalNetFreight>
|
121
|
+
<v13:Currency>USD</v13:Currency>
|
122
|
+
<v13:Amount>347.28</v13:Amount>
|
123
|
+
</v13:TotalNetFreight>
|
124
|
+
<v13:TotalSurcharges>
|
125
|
+
<v13:Currency>USD</v13:Currency>
|
126
|
+
<v13:Amount>315.35</v13:Amount>
|
127
|
+
</v13:TotalSurcharges>
|
128
|
+
<v13:TotalNetFedExCharge>
|
129
|
+
<v13:Currency>USD</v13:Currency>
|
130
|
+
<v13:Amount>662.63</v13:Amount>
|
131
|
+
</v13:TotalNetFedExCharge>
|
132
|
+
<v13:TotalTaxes>
|
133
|
+
<v13:Currency>USD</v13:Currency>
|
134
|
+
<v13:Amount>0.0</v13:Amount>
|
135
|
+
</v13:TotalTaxes>
|
136
|
+
<v13:TotalNetCharge>
|
137
|
+
<v13:Currency>USD</v13:Currency>
|
138
|
+
<v13:Amount>662.63</v13:Amount>
|
139
|
+
</v13:TotalNetCharge>
|
140
|
+
<v13:ShipmentLegRateDetails>
|
141
|
+
<v13:LegDescription>TO BORDER</v13:LegDescription>
|
142
|
+
<v13:LegOrigin>
|
143
|
+
<v13:City>HARRISON</v13:City>
|
144
|
+
<v13:StateOrProvinceCode>AR</v13:StateOrProvinceCode>
|
145
|
+
<v13:PostalCode>72601</v13:PostalCode>
|
146
|
+
<v13:CountryCode>US</v13:CountryCode>
|
147
|
+
<v13:Residential>false</v13:Residential>
|
148
|
+
</v13:LegOrigin>
|
149
|
+
<v13:LegDestination>
|
150
|
+
<v13:City>TOLEDO</v13:City>
|
151
|
+
<v13:StateOrProvinceCode>OH</v13:StateOrProvinceCode>
|
152
|
+
<v13:PostalCode>43612</v13:PostalCode>
|
153
|
+
<v13:CountryCode>US</v13:CountryCode>
|
154
|
+
<v13:Residential>false</v13:Residential>
|
155
|
+
</v13:LegDestination>
|
156
|
+
<v13:LegDestinationLocationId>NTO</v13:LegDestinationLocationId>
|
157
|
+
<v13:DimDivisor>0</v13:DimDivisor>
|
158
|
+
<v13:FuelSurchargePercent>0.0</v13:FuelSurchargePercent>
|
159
|
+
<v13:FreightRateDetail>
|
160
|
+
<v13:QuoteType>AUTOMATED</v13:QuoteType>
|
161
|
+
<v13:BaseChargeCalculation>LINE_ITEMS</v13:BaseChargeCalculation>
|
162
|
+
</v13:FreightRateDetail>
|
163
|
+
</v13:ShipmentLegRateDetails>
|
164
|
+
<v13:ShipmentLegRateDetails>
|
165
|
+
<v13:LegDescription>FROM BORDER</v13:LegDescription>
|
166
|
+
<v13:LegOrigin>
|
167
|
+
<v13:City>TOLEDO</v13:City>
|
168
|
+
<v13:StateOrProvinceCode>OH</v13:StateOrProvinceCode>
|
169
|
+
<v13:PostalCode>43612</v13:PostalCode>
|
170
|
+
<v13:CountryCode>US</v13:CountryCode>
|
171
|
+
<v13:Residential>false</v13:Residential>
|
172
|
+
</v13:LegOrigin>
|
173
|
+
<v13:LegOriginLocationId>NTO</v13:LegOriginLocationId>
|
174
|
+
<v13:LegDestination>
|
175
|
+
<v13:City>OTTAWA</v13:City>
|
176
|
+
<v13:StateOrProvinceCode>ON</v13:StateOrProvinceCode>
|
177
|
+
<v13:PostalCode>K1P1J1</v13:PostalCode>
|
178
|
+
<v13:CountryCode>CA</v13:CountryCode>
|
179
|
+
<v13:Residential>false</v13:Residential>
|
180
|
+
</v13:LegDestination>
|
181
|
+
<v13:DimDivisor>0</v13:DimDivisor>
|
182
|
+
<v13:FuelSurchargePercent>0.0</v13:FuelSurchargePercent>
|
183
|
+
<v13:FreightRateDetail>
|
184
|
+
<v13:QuoteType>AUTOMATED</v13:QuoteType>
|
185
|
+
<v13:BaseChargeCalculation>LINE_ITEMS</v13:BaseChargeCalculation>
|
186
|
+
</v13:FreightRateDetail>
|
187
|
+
</v13:ShipmentLegRateDetails>
|
188
|
+
<v13:FreightRateDetail>
|
189
|
+
<v13:QuoteNumber>1144657647</v13:QuoteNumber>
|
190
|
+
<v13:QuoteType>AUTOMATED</v13:QuoteType>
|
191
|
+
<v13:BaseChargeCalculation>LINE_ITEMS</v13:BaseChargeCalculation>
|
192
|
+
<v13:BaseCharges>
|
193
|
+
<v13:FreightClass>CLASS_050</v13:FreightClass>
|
194
|
+
<v13:RatedAsClass>CLASS_050</v13:RatedAsClass>
|
195
|
+
<v13:Description>NO DESCRIPTION</v13:Description>
|
196
|
+
<v13:Weight>
|
197
|
+
<v13:Units>LB</v13:Units>
|
198
|
+
<v13:Value>7.5</v13:Value>
|
199
|
+
</v13:Weight>
|
200
|
+
<v13:ChargeRate>
|
201
|
+
<v13:Currency>USD</v13:Currency>
|
202
|
+
<v13:Amount>0.0</v13:Amount>
|
203
|
+
</v13:ChargeRate>
|
204
|
+
<v13:ChargeBasis>MINIMUM</v13:ChargeBasis>
|
205
|
+
<v13:ExtendedAmount>
|
206
|
+
<v13:Currency>USD</v13:Currency>
|
207
|
+
<v13:Amount>578.8</v13:Amount>
|
208
|
+
</v13:ExtendedAmount>
|
209
|
+
</v13:BaseCharges>
|
210
|
+
<v13:Notations>
|
211
|
+
<v13:Code>DISCOUNT_TARIFF</v13:Code>
|
212
|
+
<v13:Description>DISCOUNT FXF 9000 0041391.0802</v13:Description>
|
213
|
+
</v13:Notations>
|
214
|
+
</v13:FreightRateDetail>
|
215
|
+
<v13:FreightDiscounts>
|
216
|
+
<v13:RateDiscountType>OTHER</v13:RateDiscountType>
|
217
|
+
<v13:Description>less 40% discount</v13:Description>
|
218
|
+
<v13:Amount>
|
219
|
+
<v13:Currency>USD</v13:Currency>
|
220
|
+
<v13:Amount>231.52</v13:Amount>
|
221
|
+
</v13:Amount>
|
222
|
+
<v13:Percent>40.0</v13:Percent>
|
223
|
+
</v13:FreightDiscounts>
|
224
|
+
<v13:Surcharges>
|
225
|
+
<v13:SurchargeType>RESIDENTIAL_PICKUP</v13:SurchargeType>
|
226
|
+
<v13:Level>SHIPMENT</v13:Level>
|
227
|
+
<v13:Description>RESIDENTIAL_PICKUP</v13:Description>
|
228
|
+
<v13:Amount>
|
229
|
+
<v13:Currency>USD</v13:Currency>
|
230
|
+
<v13:Amount>108.68</v13:Amount>
|
231
|
+
</v13:Amount>
|
232
|
+
</v13:Surcharges>
|
233
|
+
<v13:Surcharges>
|
234
|
+
<v13:SurchargeType>RESIDENTIAL_DELIVERY</v13:SurchargeType>
|
235
|
+
<v13:Level>SHIPMENT</v13:Level>
|
236
|
+
<v13:Description>RESIDENTIAL_DELIVERY</v13:Description>
|
237
|
+
<v13:Amount>
|
238
|
+
<v13:Currency>USD</v13:Currency>
|
239
|
+
<v13:Amount>108.68</v13:Amount>
|
240
|
+
</v13:Amount>
|
241
|
+
</v13:Surcharges>
|
242
|
+
<v13:Surcharges>
|
243
|
+
<v13:SurchargeType>OTHER</v13:SurchargeType>
|
244
|
+
<v13:Level>SHIPMENT</v13:Level>
|
245
|
+
<v13:Description>BORDER_CROSSING_FEE</v13:Description>
|
246
|
+
<v13:Amount>
|
247
|
+
<v13:Currency>USD</v13:Currency>
|
248
|
+
<v13:Amount>17.77</v13:Amount>
|
249
|
+
</v13:Amount>
|
250
|
+
</v13:Surcharges>
|
251
|
+
<v13:Surcharges>
|
252
|
+
<v13:SurchargeType>FUEL</v13:SurchargeType>
|
253
|
+
<v13:Level>SHIPMENT</v13:Level>
|
254
|
+
<v13:Description>FUEL</v13:Description>
|
255
|
+
<v13:Amount>
|
256
|
+
<v13:Currency>USD</v13:Currency>
|
257
|
+
<v13:Amount>80.22</v13:Amount>
|
258
|
+
</v13:Amount>
|
259
|
+
</v13:Surcharges>
|
260
|
+
</v13:ShipmentRateDetail>
|
261
|
+
</v13:RatedShipmentDetails>
|
262
|
+
</v13:RateReplyDetails>
|
263
|
+
<v13:RateReplyDetails>
|
264
|
+
<v13:ServiceType>FEDEX_FREIGHT_PRIORITY</v13:ServiceType>
|
265
|
+
<v13:DeliveryDayOfWeek>WED</v13:DeliveryDayOfWeek>
|
266
|
+
<v13:DeliveryTimestamp>2013-11-06T17:00:00-04:00</v13:DeliveryTimestamp>
|
267
|
+
<v13:CommitDetails>
|
268
|
+
<v13:ServiceType>FEDEX_FREIGHT_PRIORITY</v13:ServiceType>
|
269
|
+
<v13:CommitTimestamp>2013-11-06T17:00:00-04:00</v13:CommitTimestamp>
|
270
|
+
<v13:DayOfWeek>WED</v13:DayOfWeek>
|
271
|
+
<v13:TransitTime>THREE_DAYS</v13:TransitTime>
|
272
|
+
<v13:BrokerToDestinationDays>0</v13:BrokerToDestinationDays>
|
273
|
+
<v13:FreightCommitDetail>
|
274
|
+
<v13:OriginDetail>
|
275
|
+
<v13:AdditionalDays>0</v13:AdditionalDays>
|
276
|
+
<v13:LocalService>FEDEX_FREIGHT_PRIORITY</v13:LocalService>
|
277
|
+
<v13:LocalDistance>
|
278
|
+
<v13:Value>2.0</v13:Value>
|
279
|
+
<v13:Units>MI</v13:Units>
|
280
|
+
</v13:LocalDistance>
|
281
|
+
<v13:LocalDuration>P0DT00H03M</v13:LocalDuration>
|
282
|
+
<v13:LocalServiceScheduling>STANDARD</v13:LocalServiceScheduling>
|
283
|
+
<v13:Location>HRO</v13:Location>
|
284
|
+
<v13:ContactAndAddress>
|
285
|
+
<v13:Contact>
|
286
|
+
<v13:PersonName>FRED GARRY</v13:PersonName>
|
287
|
+
<v13:PhoneNumber>800-874-4723</v13:PhoneNumber>
|
288
|
+
<v13:FaxNumber>870-741-7325</v13:FaxNumber>
|
289
|
+
</v13:Contact>
|
290
|
+
<v13:Address>
|
291
|
+
<v13:StreetLines>2200 FORWARD DR</v13:StreetLines>
|
292
|
+
<v13:City>HARRISON</v13:City>
|
293
|
+
<v13:StateOrProvinceCode>AR</v13:StateOrProvinceCode>
|
294
|
+
<v13:PostalCode>72601-2004</v13:PostalCode>
|
295
|
+
<v13:CountryCode>US</v13:CountryCode>
|
296
|
+
<v13:Residential>false</v13:Residential>
|
297
|
+
</v13:Address>
|
298
|
+
</v13:ContactAndAddress>
|
299
|
+
</v13:OriginDetail>
|
300
|
+
<v13:DestinationDetail>
|
301
|
+
<v13:AdditionalDays>0</v13:AdditionalDays>
|
302
|
+
<v13:LocalService>FEDEX_FREIGHT_PRIORITY</v13:LocalService>
|
303
|
+
<v13:LocalDistance>
|
304
|
+
<v13:Value>0.0</v13:Value>
|
305
|
+
<v13:Units>MI</v13:Units>
|
306
|
+
</v13:LocalDistance>
|
307
|
+
<v13:LocalServiceScheduling>STANDARD</v13:LocalServiceScheduling>
|
308
|
+
<v13:GatewayLocationId>NTO</v13:GatewayLocationId>
|
309
|
+
<v13:Location>OTW</v13:Location>
|
310
|
+
<v13:ContactAndAddress>
|
311
|
+
<v13:Contact>
|
312
|
+
<v13:PersonName>CHRIS LACHANCE</v13:PersonName>
|
313
|
+
<v13:PhoneNumber>888-219-6413</v13:PhoneNumber>
|
314
|
+
<v13:FaxNumber>613-745-8004</v13:FaxNumber>
|
315
|
+
</v13:Contact>
|
316
|
+
<v13:Address>
|
317
|
+
<v13:StreetLines>1740 COMSTOCK ROAD</v13:StreetLines>
|
318
|
+
<v13:City>GLOUCESTER</v13:City>
|
319
|
+
<v13:StateOrProvinceCode>ON</v13:StateOrProvinceCode>
|
320
|
+
<v13:PostalCode>K1B5L2</v13:PostalCode>
|
321
|
+
<v13:CountryCode>CA</v13:CountryCode>
|
322
|
+
<v13:Residential>false</v13:Residential>
|
323
|
+
</v13:Address>
|
324
|
+
</v13:ContactAndAddress>
|
325
|
+
</v13:DestinationDetail>
|
326
|
+
<v13:TotalDistance>
|
327
|
+
<v13:Value>1393.0</v13:Value>
|
328
|
+
<v13:Units>MI</v13:Units>
|
329
|
+
</v13:TotalDistance>
|
330
|
+
</v13:FreightCommitDetail>
|
331
|
+
</v13:CommitDetails>
|
332
|
+
<v13:IneligibleForMoneyBackGuarantee>true</v13:IneligibleForMoneyBackGuarantee>
|
333
|
+
<v13:TransitTime>THREE_DAYS</v13:TransitTime>
|
334
|
+
<v13:ActualRateType>PAYOR_ACCOUNT_SHIPMENT</v13:ActualRateType>
|
335
|
+
<v13:RatedShipmentDetails>
|
336
|
+
<v13:ShipmentRateDetail>
|
337
|
+
<v13:RateType>PAYOR_ACCOUNT_SHIPMENT</v13:RateType>
|
338
|
+
<v13:RateScale>*FXF 1000 CN 07/01 13 LD 06122</v13:RateScale>
|
339
|
+
<v13:RatedWeightMethod>FREIGHT_MINIMUM</v13:RatedWeightMethod>
|
340
|
+
<v13:CurrencyExchangeRate>
|
341
|
+
<v13:FromCurrency>USD</v13:FromCurrency>
|
342
|
+
<v13:IntoCurrency>CAD</v13:IntoCurrency>
|
343
|
+
<v13:Rate>1.07</v13:Rate>
|
344
|
+
</v13:CurrencyExchangeRate>
|
345
|
+
<v13:DimDivisor>0</v13:DimDivisor>
|
346
|
+
<v13:FuelSurchargePercent>23.1</v13:FuelSurchargePercent>
|
347
|
+
<v13:TotalBillingWeight>
|
348
|
+
<v13:Units>LB</v13:Units>
|
349
|
+
<v13:Value>7.5</v13:Value>
|
350
|
+
</v13:TotalBillingWeight>
|
351
|
+
<v13:TotalDimWeight>
|
352
|
+
<v13:Units>LB</v13:Units>
|
353
|
+
<v13:Value>0.0</v13:Value>
|
354
|
+
</v13:TotalDimWeight>
|
355
|
+
<v13:TotalBaseCharge>
|
356
|
+
<v13:Currency>USD</v13:Currency>
|
357
|
+
<v13:Amount>609.27</v13:Amount>
|
358
|
+
</v13:TotalBaseCharge>
|
359
|
+
<v13:TotalFreightDiscounts>
|
360
|
+
<v13:Currency>USD</v13:Currency>
|
361
|
+
<v13:Amount>243.71</v13:Amount>
|
362
|
+
</v13:TotalFreightDiscounts>
|
363
|
+
<v13:TotalNetFreight>
|
364
|
+
<v13:Currency>USD</v13:Currency>
|
365
|
+
<v13:Amount>365.56</v13:Amount>
|
366
|
+
</v13:TotalNetFreight>
|
367
|
+
<v13:TotalSurcharges>
|
368
|
+
<v13:Currency>USD</v13:Currency>
|
369
|
+
<v13:Amount>319.57</v13:Amount>
|
370
|
+
</v13:TotalSurcharges>
|
371
|
+
<v13:TotalNetFedExCharge>
|
372
|
+
<v13:Currency>USD</v13:Currency>
|
373
|
+
<v13:Amount>685.13</v13:Amount>
|
374
|
+
</v13:TotalNetFedExCharge>
|
375
|
+
<v13:TotalTaxes>
|
376
|
+
<v13:Currency>USD</v13:Currency>
|
377
|
+
<v13:Amount>0.0</v13:Amount>
|
378
|
+
</v13:TotalTaxes>
|
379
|
+
<v13:TotalNetCharge>
|
380
|
+
<v13:Currency>USD</v13:Currency>
|
381
|
+
<v13:Amount>685.13</v13:Amount>
|
382
|
+
</v13:TotalNetCharge>
|
383
|
+
<v13:ShipmentLegRateDetails>
|
384
|
+
<v13:LegDescription>TO BORDER</v13:LegDescription>
|
385
|
+
<v13:LegOrigin>
|
386
|
+
<v13:City>HARRISON</v13:City>
|
387
|
+
<v13:StateOrProvinceCode>AR</v13:StateOrProvinceCode>
|
388
|
+
<v13:PostalCode>72601</v13:PostalCode>
|
389
|
+
<v13:CountryCode>US</v13:CountryCode>
|
390
|
+
<v13:Residential>false</v13:Residential>
|
391
|
+
</v13:LegOrigin>
|
392
|
+
<v13:LegDestination>
|
393
|
+
<v13:City>TOLEDO</v13:City>
|
394
|
+
<v13:StateOrProvinceCode>OH</v13:StateOrProvinceCode>
|
395
|
+
<v13:PostalCode>43612</v13:PostalCode>
|
396
|
+
<v13:CountryCode>US</v13:CountryCode>
|
397
|
+
<v13:Residential>false</v13:Residential>
|
398
|
+
</v13:LegDestination>
|
399
|
+
<v13:LegDestinationLocationId>NTO</v13:LegDestinationLocationId>
|
400
|
+
<v13:DimDivisor>0</v13:DimDivisor>
|
401
|
+
<v13:FuelSurchargePercent>0.0</v13:FuelSurchargePercent>
|
402
|
+
<v13:FreightRateDetail>
|
403
|
+
<v13:QuoteType>AUTOMATED</v13:QuoteType>
|
404
|
+
<v13:BaseChargeCalculation>LINE_ITEMS</v13:BaseChargeCalculation>
|
405
|
+
</v13:FreightRateDetail>
|
406
|
+
</v13:ShipmentLegRateDetails>
|
407
|
+
<v13:ShipmentLegRateDetails>
|
408
|
+
<v13:LegDescription>FROM BORDER</v13:LegDescription>
|
409
|
+
<v13:LegOrigin>
|
410
|
+
<v13:City>TOLEDO</v13:City>
|
411
|
+
<v13:StateOrProvinceCode>OH</v13:StateOrProvinceCode>
|
412
|
+
<v13:PostalCode>43612</v13:PostalCode>
|
413
|
+
<v13:CountryCode>US</v13:CountryCode>
|
414
|
+
<v13:Residential>false</v13:Residential>
|
415
|
+
</v13:LegOrigin>
|
416
|
+
<v13:LegOriginLocationId>NTO</v13:LegOriginLocationId>
|
417
|
+
<v13:LegDestination>
|
418
|
+
<v13:City>OTTAWA</v13:City>
|
419
|
+
<v13:StateOrProvinceCode>ON</v13:StateOrProvinceCode>
|
420
|
+
<v13:PostalCode>K1P1J1</v13:PostalCode>
|
421
|
+
<v13:CountryCode>CA</v13:CountryCode>
|
422
|
+
<v13:Residential>false</v13:Residential>
|
423
|
+
</v13:LegDestination>
|
424
|
+
<v13:DimDivisor>0</v13:DimDivisor>
|
425
|
+
<v13:FuelSurchargePercent>0.0</v13:FuelSurchargePercent>
|
426
|
+
<v13:FreightRateDetail>
|
427
|
+
<v13:QuoteType>AUTOMATED</v13:QuoteType>
|
428
|
+
<v13:BaseChargeCalculation>LINE_ITEMS</v13:BaseChargeCalculation>
|
429
|
+
</v13:FreightRateDetail>
|
430
|
+
</v13:ShipmentLegRateDetails>
|
431
|
+
<v13:FreightRateDetail>
|
432
|
+
<v13:QuoteNumber>1144657648</v13:QuoteNumber>
|
433
|
+
<v13:QuoteType>AUTOMATED</v13:QuoteType>
|
434
|
+
<v13:BaseChargeCalculation>LINE_ITEMS</v13:BaseChargeCalculation>
|
435
|
+
<v13:BaseCharges>
|
436
|
+
<v13:FreightClass>CLASS_050</v13:FreightClass>
|
437
|
+
<v13:RatedAsClass>CLASS_050</v13:RatedAsClass>
|
438
|
+
<v13:Description>NO DESCRIPTION</v13:Description>
|
439
|
+
<v13:Weight>
|
440
|
+
<v13:Units>LB</v13:Units>
|
441
|
+
<v13:Value>7.5</v13:Value>
|
442
|
+
</v13:Weight>
|
443
|
+
<v13:ChargeRate>
|
444
|
+
<v13:Currency>USD</v13:Currency>
|
445
|
+
<v13:Amount>0.0</v13:Amount>
|
446
|
+
</v13:ChargeRate>
|
447
|
+
<v13:ChargeBasis>MINIMUM</v13:ChargeBasis>
|
448
|
+
<v13:ExtendedAmount>
|
449
|
+
<v13:Currency>USD</v13:Currency>
|
450
|
+
<v13:Amount>609.27</v13:Amount>
|
451
|
+
</v13:ExtendedAmount>
|
452
|
+
</v13:BaseCharges>
|
453
|
+
<v13:Notations>
|
454
|
+
<v13:Code>DISCOUNT_TARIFF</v13:Code>
|
455
|
+
<v13:Description>DISCOUNT FXF 9000 0041391.0102</v13:Description>
|
456
|
+
</v13:Notations>
|
457
|
+
</v13:FreightRateDetail>
|
458
|
+
<v13:FreightDiscounts>
|
459
|
+
<v13:RateDiscountType>OTHER</v13:RateDiscountType>
|
460
|
+
<v13:Description>less 40% discount</v13:Description>
|
461
|
+
<v13:Amount>
|
462
|
+
<v13:Currency>USD</v13:Currency>
|
463
|
+
<v13:Amount>243.71</v13:Amount>
|
464
|
+
</v13:Amount>
|
465
|
+
<v13:Percent>40.0</v13:Percent>
|
466
|
+
</v13:FreightDiscounts>
|
467
|
+
<v13:Surcharges>
|
468
|
+
<v13:SurchargeType>RESIDENTIAL_PICKUP</v13:SurchargeType>
|
469
|
+
<v13:Level>SHIPMENT</v13:Level>
|
470
|
+
<v13:Description>RESIDENTIAL_PICKUP</v13:Description>
|
471
|
+
<v13:Amount>
|
472
|
+
<v13:Currency>USD</v13:Currency>
|
473
|
+
<v13:Amount>108.68</v13:Amount>
|
474
|
+
</v13:Amount>
|
475
|
+
</v13:Surcharges>
|
476
|
+
<v13:Surcharges>
|
477
|
+
<v13:SurchargeType>RESIDENTIAL_DELIVERY</v13:SurchargeType>
|
478
|
+
<v13:Level>SHIPMENT</v13:Level>
|
479
|
+
<v13:Description>RESIDENTIAL_DELIVERY</v13:Description>
|
480
|
+
<v13:Amount>
|
481
|
+
<v13:Currency>USD</v13:Currency>
|
482
|
+
<v13:Amount>108.68</v13:Amount>
|
483
|
+
</v13:Amount>
|
484
|
+
</v13:Surcharges>
|
485
|
+
<v13:Surcharges>
|
486
|
+
<v13:SurchargeType>OTHER</v13:SurchargeType>
|
487
|
+
<v13:Level>SHIPMENT</v13:Level>
|
488
|
+
<v13:Description>BORDER_CROSSING_FEE</v13:Description>
|
489
|
+
<v13:Amount>
|
490
|
+
<v13:Currency>USD</v13:Currency>
|
491
|
+
<v13:Amount>17.77</v13:Amount>
|
492
|
+
</v13:Amount>
|
493
|
+
</v13:Surcharges>
|
494
|
+
<v13:Surcharges>
|
495
|
+
<v13:SurchargeType>FUEL</v13:SurchargeType>
|
496
|
+
<v13:Level>SHIPMENT</v13:Level>
|
497
|
+
<v13:Description>FUEL</v13:Description>
|
498
|
+
<v13:Amount>
|
499
|
+
<v13:Currency>USD</v13:Currency>
|
500
|
+
<v13:Amount>84.44</v13:Amount>
|
501
|
+
</v13:Amount>
|
502
|
+
</v13:Surcharges>
|
503
|
+
</v13:ShipmentRateDetail>
|
504
|
+
</v13:RatedShipmentDetails>
|
505
|
+
</v13:RateReplyDetails>
|
506
|
+
</v13:RateReply>
|