<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
    <title>Magento Issue Tracking</title>
    <link>http://www.magentocommerce.com/bug-tracking/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>MagentoCommerce</dc:creator>
    <dc:rights>Copyright {gmt_date format="%Y"}</dc:rights>
    <dc:date>{gmt_date format="%Y-%m-%dT%H:%i:%s%Q"}</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
        <item>
        <title>View Issue #28639 / Wrong FedEx Rates on Magento 1.7.0.2 - displaying LIST rates instead of ACCOUNT (discounted) rates</title>
        <link>http://www.magentocommerce.com/bug-tracking/issue?issue=14644</link>
        <description><![CDATA[<strong>Posted:</strong> 2013-01-18 17:30:08<br/><strong>Category:</strong> Orders<br/><strong>Version:</strong> 1.7.0.2<br/><strong>Priority:</strong> urgent<br/><strong>Status:</strong> new<br/><strong>Reported By:</strong> <a href="http://www.magentocommerce.com/boards/member/25909082/">thalbach</a></strong><br/><br/>We recently upgraded to 1.7.0.2 and discovered that our FedEx rates were being quoted at the list rates, instead of the negotiated discount rates.<br />
<br />
After reviewing the logs and the Magento Core code, I believe I discovered the issue.  <br />
<br />
appcodecoreMageUsaModelShippingCarrierFedex.php Line 535:<br />
            foreach (array('RATED_ACCOUNT_SHIPMENT', 'RATED_LIST_SHIPMENT', 'RATED_LIST_PACKAGE') as $rateType) {<br />
<br />
The rate types returned by our FedEx API call are:<br />
PAYOR_ACCOUNT_PACKAGE<br />
RATED_ACCOUNT_PACKAGE<br />
PAYOR_LIST_PACKAGE<br />
RATED_LIST_PACKAGE<br />
<br />
Note that RATED_ACCOUNT_SHIPMENT does not appear --- this may be because there's a single package in our shipment.  As a result, it falls back to RATED_LIST_PACKAGE which is the rated price.<br />
<br />
Thus, I believe Fedex.php Line 535 needs to be changed to:<br />
            foreach (array('RATED_ACCOUNT_SHIPMENT', 'RATED_ACCOUNT_PACKAGE', 'RATED_LIST_SHIPMENT', 'RATED_LIST_PACKAGE') as $rateType) {<br />
although someone with more familiarity with the FedEx API should verify that.<br />
<br />
Thanks,<br />
  Tim<br/><br/><hr/>]]></description>
    </item>
    
    </channel>
</rss>