Page 10 of 25 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 246
  1. #91
    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

  2. #92
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    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.

  3. #93
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    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']);

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

    Default Re: UPS XML: Support Thread

    lat9, big thanks! That worked perfectly.

  5. #95
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: UPS XML: Support Thread

    Quote Originally Posted by eairtool View Post
    lat9, big thanks! That worked perfectly.
    ... and thanks back to you for the confirmation that the code posted above corrects the issue!

    I'll get that packaged up over the weekend for v1.7.6.

  6. #96
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: UPS XML: Support Thread

    I've just submitted v1.7.6 of UPSXML for the Zen Cart moderators' review and will post back here once it's approved.

    This release contains changes associated with the following GitHub issue:


    #18: Correct shipping-estimator quotes, when insurance is included.

  7. #97
    Join Date
    Sep 2012
    Location
    Upstate South Carolina
    Posts
    96
    Plugin Contributions
    2

    Default Re: UPS XML: Support Thread

    We operate a B2B site (1.55f, php 7.1). I have the Quote Type (Residential / Commercial) set to Commercial, resulting in lower rates being returned. That fits the majority of my customers.

    The problem is many business operate from residences. When a customer ships to a residence, the site is undercharging them by a significant amount. On premium services it is often $20 or more.

    Any ideas are appreciated.

    @lat9, thanks very much for the work on this module.

  8. #98
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: UPS XML: Support Thread

    You could use the UPS 'address validation service' to determine whether the ship-to address is commercial vs. residential, clone the upsxml module so that one instance is for residential and one is for commercial.

    Then update each of the upsxml versions to disable themselves if the address validation indicates that the address isn't valid for the service.

  9. #99
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: UPS XML: Support Thread

    Quote Originally Posted by lat9 View Post
    I've just submitted v1.7.6 of UPSXML for the Zen Cart moderators' review and will post back here once it's approved.

    This release contains changes associated with the following GitHub issue:


    #18: Correct shipping-estimator quotes, when insurance is included.
    Now available for download: https://www.zen-cart.com/downloads.php?do=file&id=126

  10. #100
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,492
    Plugin Contributions
    88

    Default Re: UPS XML: Support Thread

    I've just submitted v1.7.7 of UPS XML for the Zen Cart moderators' review; I'll post back when it's available for download.

    This release contains changes associated with the following GitHub issues:

    #19: Correct PHP notices generated.
    #20: Display "New version available" only from admin's Modules->Shipping
    #21: Correct "Next Day Air Early" quotes not being returned.
    #22: Restructure distribution.
    #23: Sort quotes returned by cost.

 

 
Page 10 of 25 FirstFirst ... 8910111220 ... LastLast

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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR