Page 5 of 6 FirstFirst ... 3456 LastLast
Results 41 to 50 of 52
  1. #41
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    I have discovered that when a customer uses an invalid zip code, instead of giving an error, this module gives a default rate of $11. Does this happen for anyone else?

  2. #42
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    The regular UPS XML module returns an accurate rate even if the zip code is invalid... I wonder if there is any way to return the published rates instead of the negotiated rates if the postal code is invalid?

  3. #43
    Join Date
    Jun 2006
    Location
    Atlanta, GA
    Posts
    118
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    To remove the weight part of the results, comment out
    PHP Code:
                // if (DIMENSIONS_SUPPORTED) {
                //     $this->quotes = array('id' => $this->code, 'module' => $this->title . ' (' . $this->boxCount . ($this->boxCount > 1 ? ' pkg(s), ' : ' pkg, ') . $totalWeight . ' ' . strtolower($this->unit_weight) . ' total)');
                // } else {
                //     $this->quotes = array('id' => $this->code, 'module' => $this->title . ' (' . $shipping_num_boxes . ($this->boxCount > 1 ? ' pkg(s) x ' : ' pkg x ') . number_format($shipping_weight,2) . ' ' . strtolower($this->unit_weight) . ' total)');
                // } 
    http://www.divinelighting.com -- Super Orders 3.0 -- Ultimate SEO -- Quantity Discounts -- SitemapXML -- Image Handler -- Shipworks

  4. #44
    Join Date
    Jun 2006
    Location
    Atlanta, GA
    Posts
    118
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    I have also found that entering an invalid post code will return incorrect postage. For example, 1 oz item to France post code 4650 is $8.50, an order of magnitude off. Really France should have 5 digit post code, but customers often get it wrong. Scary.
    http://www.divinelighting.com -- Super Orders 3.0 -- Ultimate SEO -- Quantity Discounts -- SitemapXML -- Image Handler -- Shipworks

  5. #45
    Join Date
    Jun 2006
    Location
    Atlanta, GA
    Posts
    118
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    Would a moderator please delete my post #43. The solution works only in Estimate Shipping. During the checkout, it actually prohibits UPS methods from showing.
    http://www.divinelighting.com -- Super Orders 3.0 -- Ultimate SEO -- Quantity Discounts -- SitemapXML -- Image Handler -- Shipworks

  6. #46
    Join Date
    Jun 2006
    Location
    Atlanta, GA
    Posts
    118
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    I think I finally figured out how to remove weight and number of packages:

    PHP Code:
            if ((is_array($upsQuote)) && (sizeof($upsQuote) > 0)) {
                 if (
    DIMENSIONS_SUPPORTED) {
                     
    $this->quotes = array('id' => $this->code'module' => $this->title ' (' $this->boxCount . ($this->boxCount ' pkg(s), ' ' pkg, ') . $totalWeight ' ' strtolower($this->unit_weight) . ' total)');
                 } else {
                     
    $this->quotes = array('id' => $this->code'module' => $this->title ' (' $shipping_num_boxes . ($this->boxCount ' pkg(s) x ' ' pkg x ') . number_format($shipping_weight,2) . ' ' strtolower($this->unit_weight) . ' total)');
                 } 
    to

    PHP Code:
            if ((is_array($upsQuote)) && (sizeof($upsQuote) > 0)) {
                 if (
    DIMENSIONS_SUPPORTED) {
                     
    $this->quotes = array('id' => $this->code'module' => $this->title );
                 } else {
                     
    $this->quotes = array('id' => $this->code'module' => $this->title );
                 } 
    http://www.divinelighting.com -- Super Orders 3.0 -- Ultimate SEO -- Quantity Discounts -- SitemapXML -- Image Handler -- Shipworks

  7. #47
    Join Date
    Jul 2011
    Posts
    214
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    Recently the UPS XML module has had some issues. It's not functioning as it was a month ago which tells me there have been some changes on UPS's end. Anyone else having problems?

  8. #48
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: UPS discounted rates not showing in UPS XML

    Could you provide any examples of what is NOT funtion the same as last month?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  9. #49
    Join Date
    Jul 2011
    Posts
    214
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    From UPS:

    Helpdesk response:
    We have received reports from customer using the Xpci Version of 1.0001 in their requests intermittently returning a file with only the XML declaration statement.
    Please modify your code to use the version as shown in the developer guides:
    <XpciVersion>1.0</XpciVersion>
    </TransactionReference

  10. #50
    Join Date
    Jul 2011
    Posts
    214
    Plugin Contributions
    0

    Default Re: UPS discounted rates not showing in UPS XML

    Quote Originally Posted by In2Deep View Post
    From UPS:

    Helpdesk response:
    We have received reports from customer using the Xpci Version of 1.0001 in their requests intermittently returning a file with only the XML declaration statement.
    Please modify your code to use the version as shown in the developer guides:
    <XpciVersion>1.0</XpciVersion>
    </TransactionReference
    Published Rates XML Request Example:

    <?xml version="1.0"?>
    <AccessRequest xml:lang="en-US">
    <AccessLicenseNumber>Your Access License</AccessLicenseNumber>
    <UserId>Your User Id</UserId>
    <Password>Your Password</Password>
    </AccessRequest>
    <?xml version="1.0"?>
    <RatingServiceSelectionRequest xml:lang="en-US">
    <Request>
    <TransactionReference>
    <CustomerContext>Your Customer Context</CustomerContext>
    <XpciVersion>1.0</XpciVersion>
    </TransactionReference>
    <RequestAction>Rate</RequestAction>
    <RequestOption>Rate</RequestOption>
    </Request>
    <Shipment>
    <Shipper>
    <Name>Shipper Name</Name>
    <AttentionName>Shipper Attention Name</AttentionName>
    <PhoneNumber>1234567890</PhoneNumber>
    <FaxNumber>1234567890</FaxNumber>
    <ShipperNumber>Your Shipper Number</ShipperNumber>
    <Address>
    <AddressLine1>Address Line 1</AddressLine1>
    <City>City</City>
    <StateProvinceCode>StateProvinceCode</StateProvinceCode>
    <PostalCode>PostalCode</PostalCode>
    <CountryCode>CountryCode</CountryCode>
    </Address>
    </Shipper>
    <ShipTo>
    <CompanyName>Ship To Company Name</CompanyName>
    <AttentionName>Ship To Attention Name</AttentionName>
    <PhoneNumber>1234567890</PhoneNumber>
    <FaxNumber>1234567890</FaxNumber>
    <Address>
    <AddressLine1>Address Line 1</AddressLine1>
    <City>City</City>
    <StateProvinceCode>StateProvinceCode</StateProvinceCode>
    <PostalCode>PostalCode</PostalCode>
    <CountryCode>CountryCode</CountryCode>
    </Address>
    </ShipTo>
    <ShipFrom>
    <CompanyName>Ship From Company Name</CompanyName>
    <AttentionName>Ship From Attention Name</AttentionName>
    <PhoneNumber>1234567890</PhoneNumber>
    <FaxNumber>1234567890</FaxNumber>
    <Address>
    <AddressLine1>Address Line 1</AddressLine1>
    <City>City</City>
    <StateProvinceCode>StateProvinceCode</StateProvinceCode>
    <PostalCode>PostalCode</PostalCode>
    <CountryCode>CountryCode</CountryCode>
    </Address>
    </ShipFrom>
    <PaymentInformation>
    <Prepaid>
    <BillShipper>
    <AccountNumber>Your Account Number</AccountNumber>
    </BillShipper>
    </Prepaid>
    </PaymentInformation>
    <Service>
    <Code>59</Code>
    <Description>2nd Day Air AM</Description>
    </Service>
    <Package>
    <PackagingType>
    <Code>02</Code>
    <Description>UPS Package</Description>
    </PackagingType>
    <PackageWeight>
    <UnitOfMeasurement>
    <Code>LBS</Code>
    </UnitOfMeasurement>
    <Weight>5</Weight>
    </PackageWeight>
    <Dimensions>
    <Length>10</Length>
    <Width>5</Width>
    <Height>7</Height>
    </Dimensions>
    </Package>
    </Shipment>
    </RatingServiceSelectionRequest>

    There is also a Published Rates XML Response Example and a Published Rates XML Response Example and a Negotiated Rates XML Response Example

 

 
Page 5 of 6 FirstFirst ... 3456 LastLast

Similar Threads

  1. UPS XML suddenly not returning calculated rates
    By abcisme in forum Addon Shipping Modules
    Replies: 2
    Last Post: 24 Apr 2012, 11:49 PM
  2. UPS discounted rates calculates wrong
    By Podsolnuh in forum Addon Shipping Modules
    Replies: 2
    Last Post: 2 Nov 2011, 01:39 AM
  3. UPS Shipping - not working (UPS-XML addon)
    By breck in forum Addon Shipping Modules
    Replies: 30
    Last Post: 20 Aug 2010, 03:24 AM
  4. Shipping Estimator showing blank rates, UPS XML Mod. ZC v1.2.6
    By jacdesigner in forum Addon Shipping Modules
    Replies: 7
    Last Post: 1 Jun 2008, 03:29 AM
  5. Need to display UPS discounted rates
    By tat2nu in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 22 Feb 2008, 08:34 PM

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