Results 1 to 10 of 246

Hybrid View

  1. #1
    Join Date
    Mar 2016
    Location
    Marietta GA
    Posts
    84
    Plugin Contributions
    0

    Default Re: UPS XML: Support Thread

    Here's some additional information. I turned on debug, and generated the attached log file.

    UPS XML calc'ed a rate of $111.44 for a 12 lb package sent 2d day air. (we ship perishable food, it must go 2DA to western locations). We are in Atlanta.

    We then entered the same package weight, to same zip, and with same shipping (2d day air) into UPS Worldship desktop application. It calc'ed a rate of $63.82.

    Of course the $111.44 rates scares off the customers when they're in the shopping cart.

    The 63.82 is our negotiated rate with UPS. The 111.44 is the published rate -- what any joe would pay walking up to a UPS Store with the package.

    So the question is why is the negotiated rate not coming back via UPS XML?

    I don't see any errors in the log file. I have redacted sensitive credentials, etc.
    Attached Files Attached Files

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: UPS XML: Support Thread

    Apparently that account isn't authorized for negotiated rates, as found in the UPS response:
    Code:
    <RatedShipmentWarning>User Id and Shipper Number combination is not qualified to receive negotiated rates.</RatedShipmentWarning>

  3. #3
    Join Date
    Mar 2016
    Location
    Marietta GA
    Posts
    84
    Plugin Contributions
    0

    Default Re: UPS XML: Support Thread

    Thank you, lat9. I should have caught that

    It seems clear that there is an issue with the account on the UPS side which is not allowing the negotiated rates to be returned. I have provided this information, along with the raw log file, to UPS.

  4. #4
    Join Date
    Sep 2019
    Location
    Michigan
    Posts
    2
    Plugin Contributions
    0

    Default Re: UPS XML: Support Thread

    I just installed the UPSXML from the standard UPS version that was not calculating insurance. I have a lot of high value items on my site and we were losing that money on transactions.

    The rates seem to be calculating fine as long as you are logged in. If you are not logged in, the rates show as stanard rates without insurance. I could not find any settings that would affect this. I am worried about potential customers checking the estimated shipping rates and then when they sign up the cost is drastically different.

    Site is v1.5.5f
    upsxml is 1.7.5

  5. #5
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: UPS XML: Support Thread

    Quote Originally Posted by eairtool View Post
    I just installed the UPSXML from the standard UPS version that was not calculating insurance. I have a lot of high value items on my site and we were losing that money on transactions.

    The rates seem to be calculating fine as long as you are logged in. If you are not logged in, the rates show as stanard rates without insurance. I could not find any settings that would affect this. I am worried about potential customers checking the estimated shipping rates and then when they sign up the cost is drastically different.

    Site is v1.5.5f
    upsxml is 1.7.5
    You're correct. The shipping module currently looks for an "order" (i.e. during the checkout process) to gather the subtotal to be submitted to UPS (otherwise defaulting to a 100.00 value).

    I'll create an issue on the UPSXML GitHub (https://github.com/lat9/upsxml) to track this change.

  6. #6
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,942
    Plugin Contributions
    96

    Default Re: UPS XML: Support Thread

    Quote Originally Posted by lat9 View Post
    You're correct. The shipping module currently looks for an "order" (i.e. during the checkout process) to gather the subtotal to be submitted to UPS (otherwise defaulting to a 100.00 value).

    I'll create an issue on the UPSXML GitHub (https://github.com/lat9/upsxml) to track this change.
    I've got this update staged for v1.7.6 of the shipping module. You can edit your copy (line 109), changing from:
    Code:
                $this->pkgvalue = (MODULE_SHIPPING_UPSXML_INSURE == 'False' || !isset($order)) ? 100 : ceil($order->info['subtotal']);
    to
    Code:
                $this->pkgvalue = (MODULE_SHIPPING_UPSXML_INSURE == 'False' || !isset($order->info['subtotal'])) ? ceil($_SESSION['cart']->total) : ceil($order->info['subtotal']);

  7. #7
    Join Date
    Sep 2019
    Location
    Michigan
    Posts
    2
    Plugin Contributions
    0

    Default Re: UPS XML: Support Thread

    lat9, big thanks! That worked perfectly.

 

 

Similar Threads

  1. UPS discounted rates not showing in UPS XML
    By cspan27 in forum Addon Shipping Modules
    Replies: 51
    Last Post: 27 Jun 2016, 03:52 PM
  2. v151 Ty UPS WorldShip Support Thread
    By colosports in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 1 Jun 2014, 12:05 AM
  3. UPS XML Stopped Communicating with UPS... HELP!
    By rconway28 in forum Addon Shipping Modules
    Replies: 28
    Last Post: 23 Nov 2011, 03:31 PM
  4. UPS Shipping - not working (UPS-XML addon)
    By breck in forum Addon Shipping Modules
    Replies: 30
    Last Post: 20 Aug 2010, 03:24 AM
  5. UPS/UPS XML Future Day Pick-up
    By fred_hf in forum Addon Shipping Modules
    Replies: 0
    Last Post: 21 Dec 2009, 07:59 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg