reactive_shipping 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.travis.yml +33 -0
- data/.yardopts +13 -0
- data/CHANGELOG.md +225 -0
- data/CONTRIBUTING.md +23 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +21 -0
- data/README.md +158 -0
- data/Rakefile +35 -0
- data/dev.yml +17 -0
- data/gemfiles/activesupport42.gemfile +5 -0
- data/gemfiles/activesupport50.gemfile +6 -0
- data/gemfiles/activesupport51.gemfile +5 -0
- data/gemfiles/activesupport52.gemfile +5 -0
- data/gemfiles/activesupport_master.gemfile +5 -0
- data/lib/certs/eParcel.dtd +111 -0
- data/lib/reactive_shipping.rb +26 -0
- data/lib/reactive_shipping/address_validation_response.rb +30 -0
- data/lib/reactive_shipping/carrier.rb +184 -0
- data/lib/reactive_shipping/carriers.rb +35 -0
- data/lib/reactive_shipping/carriers/australia_post.rb +248 -0
- data/lib/reactive_shipping/carriers/benchmark_carrier.rb +31 -0
- data/lib/reactive_shipping/carriers/bogus_carrier.rb +12 -0
- data/lib/reactive_shipping/carriers/canada_post.rb +263 -0
- data/lib/reactive_shipping/carriers/canada_post_pws.rb +908 -0
- data/lib/reactive_shipping/carriers/fedex.rb +797 -0
- data/lib/reactive_shipping/carriers/kunaki.rb +155 -0
- data/lib/reactive_shipping/carriers/new_zealand_post.rb +260 -0
- data/lib/reactive_shipping/carriers/shipwire.rb +178 -0
- data/lib/reactive_shipping/carriers/stamps.rb +860 -0
- data/lib/reactive_shipping/carriers/ups.rb +1060 -0
- data/lib/reactive_shipping/carriers/usps.rb +708 -0
- data/lib/reactive_shipping/carriers/usps_returns.rb +86 -0
- data/lib/reactive_shipping/delivery_date_estimate.rb +20 -0
- data/lib/reactive_shipping/delivery_date_estimates_response.rb +11 -0
- data/lib/reactive_shipping/errors.rb +35 -0
- data/lib/reactive_shipping/external_return_label_request.rb +417 -0
- data/lib/reactive_shipping/external_return_label_response.rb +26 -0
- data/lib/reactive_shipping/label.rb +10 -0
- data/lib/reactive_shipping/label_response.rb +10 -0
- data/lib/reactive_shipping/location.rb +166 -0
- data/lib/reactive_shipping/package.rb +165 -0
- data/lib/reactive_shipping/package_item.rb +60 -0
- data/lib/reactive_shipping/rate_estimate.rb +197 -0
- data/lib/reactive_shipping/rate_response.rb +33 -0
- data/lib/reactive_shipping/response.rb +44 -0
- data/lib/reactive_shipping/shipment_event.rb +22 -0
- data/lib/reactive_shipping/shipment_packer.rb +108 -0
- data/lib/reactive_shipping/shipping_response.rb +34 -0
- data/lib/reactive_shipping/tracking_response.rb +120 -0
- data/lib/reactive_shipping/version.rb +3 -0
- data/reactive_shipping.gemspec +38 -0
- data/shipit.rubygems.yml +1 -0
- data/test/console.rb +39 -0
- data/test/credentials.yml +76 -0
- data/test/fixtures/files/label1.pdf +0 -0
- data/test/fixtures/files/ups-shipping-label.gif +0 -0
- data/test/fixtures/json/australia_post/calculate_domestic.json +13 -0
- data/test/fixtures/json/australia_post/calculate_domestic_2.json +19 -0
- data/test/fixtures/json/australia_post/calculate_international.json +12 -0
- data/test/fixtures/json/australia_post/calculate_international_2.json +15 -0
- data/test/fixtures/json/australia_post/error_message.json +5 -0
- data/test/fixtures/json/australia_post/service_domestic.json +117 -0
- data/test/fixtures/json/australia_post/service_domestic_2.json +117 -0
- data/test/fixtures/json/australia_post/service_international.json +76 -0
- data/test/fixtures/json/australia_post/service_international_2.json +59 -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/create_shipment_response.xml +2 -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_no_saturday_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/raterequest_response_with_ground_home_delivery.xml +206 -0
- data/test/fixtures/xml/fedex/reply_without_notifications.xml +185 -0
- data/test/fixtures/xml/fedex/tracking_request.xml +29 -0
- data/test/fixtures/xml/fedex/tracking_response_bad_tracking_number.xml +20 -0
- data/test/fixtures/xml/fedex/tracking_response_delivered_at_door.xml +254 -0
- data/test/fixtures/xml/fedex/tracking_response_delivered_at_facility.xml +403 -0
- data/test/fixtures/xml/fedex/tracking_response_delivered_with_signature.xml +269 -0
- data/test/fixtures/xml/fedex/tracking_response_empty_status_detail.xml +84 -0
- data/test/fixtures/xml/fedex/tracking_response_failure_code_9045.xml +52 -0
- data/test/fixtures/xml/fedex/tracking_response_failure_code_9080.xml +51 -0
- data/test/fixtures/xml/fedex/tracking_response_in_transit.xml +127 -0
- data/test/fixtures/xml/fedex/tracking_response_invalid_tracking_number.xml +52 -0
- data/test/fixtures/xml/fedex/tracking_response_missing_status_code.xml +89 -0
- data/test/fixtures/xml/fedex/tracking_response_multiple_results.xml +100 -0
- data/test/fixtures/xml/fedex/tracking_response_not_found.xml +52 -0
- data/test/fixtures/xml/fedex/tracking_response_shipment_exception.xml +209 -0
- data/test/fixtures/xml/fedex/tracking_response_unable_to_process.xml +32 -0
- data/test/fixtures/xml/fedex/tracking_response_with_blank_state.xml +107 -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/access_request.xml +6 -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/delivery_dates_response.xml +140 -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/package_exceeds_maximum_length.xml +12 -0
- data/test/fixtures/xml/ups/rate_single_service.xml +54 -0
- data/test/fixtures/xml/ups/rescheduled_shipment.xml +204 -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 +290 -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/tracking_request.xml +9 -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/ups/void_shipment_response.xml +11 -0
- data/test/fixtures/xml/usps/api_error_rate_response.xml +53 -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/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_response.xml +10 -0
- data/test/fixtures/xml/usps/invalid_xml_tracking_response_error.xml +2 -0
- data/test/fixtures/xml/usps/tracking_request.xml +10 -0
- data/test/fixtures/xml/usps/tracking_request_batch.xml +12 -0
- data/test/fixtures/xml/usps/tracking_response.xml +162 -0
- data/test/fixtures/xml/usps/tracking_response_alt.xml +53 -0
- data/test/fixtures/xml/usps/tracking_response_batch.xml +231 -0
- data/test/fixtures/xml/usps/tracking_response_failure.xml +11 -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/us_rate_request_large.xml +18 -0
- data/test/fixtures/xml/usps/world_rate_request_only_country.xml +22 -0
- data/test/fixtures/xml/usps/world_rate_request_with_value.xml +24 -0
- data/test/fixtures/xml/usps/world_rate_request_without_value.xml +24 -0
- data/test/fixtures/xml/usps_returns/external_return_label_response.xml +2 -0
- data/test/fixtures/xml/usps_returns/external_return_label_response_failure.xml +10 -0
- data/test/remote/australia_post_test.rb +140 -0
- data/test/remote/canada_post_pws_platform_test.rb +259 -0
- data/test/remote/canada_post_pws_test.rb +169 -0
- data/test/remote/canada_post_test.rb +55 -0
- data/test/remote/fedex_test.rb +400 -0
- data/test/remote/kunaki_test.rb +37 -0
- data/test/remote/new_zealand_post_test.rb +149 -0
- data/test/remote/shipwire_test.rb +84 -0
- data/test/remote/stamps_test.rb +396 -0
- data/test/remote/usps_returns_test.rb +72 -0
- data/test/remote/usps_test.rb +243 -0
- data/test/test_helper.rb +296 -0
- data/test/unit/carrier_test.rb +130 -0
- data/test/unit/carriers/australia_post_test.rb +181 -0
- data/test/unit/carriers/benchmark_test.rb +18 -0
- data/test/unit/carriers/canada_post_pws_rating_test.rb +379 -0
- data/test/unit/carriers/canada_post_pws_register_test.rb +76 -0
- data/test/unit/carriers/canada_post_pws_shipping_test.rb +258 -0
- data/test/unit/carriers/canada_post_pws_test.rb +59 -0
- data/test/unit/carriers/canada_post_pws_tracking_test.rb +154 -0
- data/test/unit/carriers/canada_post_test.rb +148 -0
- data/test/unit/carriers/fedex_test.rb +693 -0
- data/test/unit/carriers/kunaki_test.rb +56 -0
- data/test/unit/carriers/new_zealand_post_test.rb +177 -0
- data/test/unit/carriers/shipwire_test.rb +188 -0
- data/test/unit/carriers/stamps_test.rb +245 -0
- data/test/unit/carriers/ups_test.rb +580 -0
- data/test/unit/carriers/usps_returns_test.rb +45 -0
- data/test/unit/carriers/usps_test.rb +633 -0
- data/test/unit/carriers_test.rb +16 -0
- data/test/unit/external_return_label_request_test.rb +258 -0
- data/test/unit/location_test.rb +234 -0
- data/test/unit/package_item_test.rb +232 -0
- data/test/unit/package_test.rb +404 -0
- data/test/unit/rate_estimate_test.rb +93 -0
- data/test/unit/response_test.rb +38 -0
- data/test/unit/shipment_event_test.rb +20 -0
- data/test/unit/shipment_packer_test.rb +212 -0
- data/test/unit/tracking_response_test.rb +41 -0
- metadata +684 -0
@@ -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,2 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<v13:ProcessShipmentReply xmlns:v13="http://fedex.com/ws/ship/v13"><v13:HighestSeverity>SUCCESS</v13:HighestSeverity><v13:Notifications><v13:Severity>SUCCESS</v13:Severity><v13:Source>ship</v13:Source><v13:Code>0000</v13:Code><v13:Message>Success</v13:Message><v13:LocalizedMessage>Success</v13:LocalizedMessage></v13:Notifications><v13:TransactionDetail> <v13:CustomerTransactionId>ReactiveShipping</v13:CustomerTransactionId> </v13:TransactionDetail><v13:Version> <v13:ServiceId>ship</v13:ServiceId> <v13:Major>13</v13:Major> <v13:Intermediate>0</v13:Intermediate> <v13:Minor>0</v13:Minor> </v13:Version><v13:JobId>2cbe617200571fq127edj036951</v13:JobId><v13:CompletedShipmentDetail><v13:UsDomestic>true</v13:UsDomestic><v13:CarrierCode>FDXG</v13:CarrierCode><v13:PackagingDescription>YOUR_PACKAGING</v13:PackagingDescription><v13:OperationalDetail><v13:OriginLocationNumber>915</v13:OriginLocationNumber><v13:DestinationLocationNumber>100</v13:DestinationLocationNumber><v13:TransitTime>FOUR_DAYS</v13:TransitTime><v13:IneligibleForMoneyBackGuarantee>false</v13:IneligibleForMoneyBackGuarantee><v13:DeliveryEligibilities>SATURDAY_DELIVERY</v13:DeliveryEligibilities><v13:ServiceCode>92</v13:ServiceCode></v13:OperationalDetail><v13:ShipmentRating><v13:ActualRateType>PAYOR_ACCOUNT_PACKAGE</v13:ActualRateType><v13:ShipmentRateDetails><v13:RateType>PAYOR_ACCOUNT_PACKAGE</v13:RateType><v13:RateZone>8</v13:RateZone><v13:RatedWeightMethod>ACTUAL</v13:RatedWeightMethod><v13:DimDivisor>0</v13:DimDivisor><v13:FuelSurchargePercent>4.5</v13:FuelSurchargePercent><v13:TotalBillingWeight><v13:Units>LB</v13:Units><v13:Value>8.0</v13:Value></v13:TotalBillingWeight><v13:TotalBaseCharge><v13:Currency>USD</v13:Currency><v13:Amount>12.79</v13:Amount></v13:TotalBaseCharge><v13:TotalFreightDiscounts><v13:Currency>USD</v13:Currency><v13:Amount>0.0</v13:Amount></v13:TotalFreightDiscounts><v13:TotalNetFreight><v13:Currency>USD</v13:Currency><v13:Amount>12.79</v13:Amount></v13:TotalNetFreight><v13:TotalSurcharges><v13:Currency>USD</v13:Currency><v13:Amount>0.58</v13:Amount></v13:TotalSurcharges><v13:TotalNetFedExCharge><v13:Currency>USD</v13:Currency><v13:Amount>13.37</v13:Amount></v13:TotalNetFedExCharge><v13:TotalTaxes><v13:Currency>USD</v13:Currency><v13:Amount>0.0</v13:Amount></v13:TotalTaxes><v13:TotalNetCharge><v13:Currency>USD</v13:Currency><v13:Amount>13.37</v13:Amount></v13:TotalNetCharge><v13:TotalRebates><v13:Currency>USD</v13:Currency><v13:Amount>0.0</v13:Amount></v13:TotalRebates><v13:Surcharges><v13:SurchargeType>FUEL</v13:SurchargeType><v13:Level>PACKAGE</v13:Level><v13:Description>FedEx Ground Fuel</v13:Description><v13:Amount><v13:Currency>USD</v13:Currency><v13:Amount>0.58</v13:Amount></v13:Amount></v13:Surcharges></v13:ShipmentRateDetails></v13:ShipmentRating><v13:CompletedPackageDetails><v13:SequenceNumber>1</v13:SequenceNumber><v13:TrackingIds><v13:TrackingIdType>FEDEX</v13:TrackingIdType><v13:TrackingNumber>794637052920</v13:TrackingNumber></v13:TrackingIds><v13:GroupNumber>0</v13:GroupNumber><v13:PackageRating><v13:ActualRateType>PAYOR_ACCOUNT_PACKAGE</v13:ActualRateType><v13:PackageRateDetails><v13:RateType>PAYOR_ACCOUNT_PACKAGE</v13:RateType><v13:RatedWeightMethod>ACTUAL</v13:RatedWeightMethod><v13:BillingWeight><v13:Units>LB</v13:Units><v13:Value>8.0</v13:Value></v13:BillingWeight><v13:BaseCharge><v13:Currency>USD</v13:Currency><v13:Amount>12.79</v13:Amount></v13:BaseCharge><v13:TotalFreightDiscounts><v13:Currency>USD</v13:Currency><v13:Amount>0.0</v13:Amount></v13:TotalFreightDiscounts><v13:NetFreight><v13:Currency>USD</v13:Currency><v13:Amount>12.79</v13:Amount></v13:NetFreight><v13:TotalSurcharges><v13:Currency>USD</v13:Currency><v13:Amount>0.58</v13:Amount></v13:TotalSurcharges><v13:NetFedExCharge><v13:Currency>USD</v13:Currency><v13:Amount>13.37</v13:Amount></v13:NetFedExCharge><v13:TotalTaxes><v13:Currency>USD</v13:Currency><v13:Amount>0.0</v13:Amount></v13:TotalTaxes><v13:NetCharge><v13:Currency>USD</v13:Currency><v13:Amount>13.37</v13:Amount></v13:NetCharge><v13:TotalRebates><v13:Currency>USD</v13:Currency><v13:Amount>0.0</v13:Amount></v13:TotalRebates><v13:Surcharges><v13:SurchargeType>FUEL</v13:SurchargeType><v13:Level>PACKAGE</v13:Level><v13:Description>FedEx Ground Fuel</v13:Description><v13:Amount><v13:Currency>USD</v13:Currency><v13:Amount>0.58</v13:Amount></v13:Amount></v13:Surcharges></v13:PackageRateDetails></v13:PackageRating><v13:OperationalDetail><v13:OperationalInstructions><v13:Number>2</v13:Number><v13:Content>TRK#</v13:Content></v13:OperationalInstructions><v13:OperationalInstructions><v13:Number>7</v13:Number><v13:Content>9622001900008000296000794637052920</v13:Content></v13:OperationalInstructions><v13:OperationalInstructions><v13:Number>8</v13:Number><v13:Content>537J1/25E2/EE4B</v13:Content></v13:OperationalInstructions><v13:OperationalInstructions><v13:Number>10</v13:Number><v13:Content>7946 3705 2920</v13:Content></v13:OperationalInstructions><v13:OperationalInstructions><v13:Number>15</v13:Number><v13:Content>10017</v13:Content></v13:OperationalInstructions><v13:OperationalInstructions><v13:Number>18</v13:Number><v13:Content>9622 0019 0 (000 800 0296) 0 00 7946 3705 2920</v13:Content></v13:OperationalInstructions><v13:Barcodes><v13:BinaryBarcodes><v13:Type>COMMON_2D</v13:Type><v13:Value>Wyk+HjAxHTAyMTAwMTcdODQwHTAxOR03OTQ2MzcwNTI5MjAdRkRFRx0wMDA4MDAwMjk2HTEyMB0dMS8xHTcuNTBMQh1OHTc4MCAzcmQgQXZlbnVlHU5ldyBZb3JrHU5ZHUJvYiBCb2JzZW4eMDYdMTBaR0QwMDcdMTJaMTIzMTIzMTIzNB0xNFpTdWl0ZSAgMjYwMR0yMFocHTMxWjk2MjIwMDE5MDAwMDgwMDAyOTYwMDA3OTQ2MzcwNTI5MjAdMzRaMDEdHgQ=</v13:Value></v13:BinaryBarcodes><v13:StringBarcodes><v13:Type>FEDEX_1D</v13:Type><v13:Value>9622001900008000296000794637052920</v13:Value></v13:StringBarcodes></v13:Barcodes><v13:GroundServiceCode>019</v13:GroundServiceCode></v13:OperationalDetail><v13:Label><v13:Type>OUTBOUND_LABEL</v13:Type><v13:ShippingDocumentDisposition>RETURNED</v13:ShippingDocumentDisposition><v13:ImageType>PNG</v13:ImageType><v13:Resolution>200</v13:Resolution><v13:CopiesToPrint>1</v13:CopiesToPrint><v13:Parts><v13:DocumentPartSequenceNumber>1</v13:DocumentPartSequenceNumber><v13:Image>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</v13:Image></v13:Parts></v13:Label><v13:SignatureOption>SERVICE_DEFAULT</v13:SignatureOption></v13:CompletedPackageDetails></v13:CompletedShipmentDetail></v13:ProcessShipmentReply>
|
@@ -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>ReactiveShipping</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>ReactiveShipping</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>
|