FedEx shipping method not appearing on Order Details or Invoice

Project:FedEx Shipping Quotes
Component:Code
Category:
Priority:normal
Assigned:Unassigned
Status:active
Description
Project: 
uc_fedex

I have the uc_fedex module set up and running smoothly for receiving a quote request from the FedEx servers. The problem I am encountering is that no "Shipping Method" is being transferred to the Order Details page or the customer invoice. The quote itself is showing up but it is just preceeded by a colon ( : $12.45)

Is there a fix for this? We need to know how to ship the product at distribution and without a method being posted to the notification (ground, 2nd day, international, etc.) it will be impossible for me to launch my client's site.

I have looked at the code from the quotes module and everything appears to be in order, just no value being passed.

Any ideas?

Version: 
Ubercart 1.0
AntoineSolutions's picture
Offline
Bug Finder
Joined: 05/02/2008
Juice: 166
Fixed shipping type not showing up on review page

This issue has been fixed and can be downloaded at: http://www.ubercart.org/contrib/2106#comment-22954.

--
Cheers,

Jon Antoine
www.antoinesolutions.com

Cheers,

Jon Antoine
Antoine Solutions
Free Open Source PHP IDE

jrust's picture
Offline
Joined: 12/19/2007
Juice: 121
How to fix for UC 1.3
Assigned to:AntoineSolutions» jrust

To fix the issue the key for the $quotes array needs to be a string instead of a number (didn't investigate why, but that's how uc_ups does it). So, change line 456 from:
$quotes[] = array(
to
$quotes[$service] = array(
and it will then work fine with ubercart 1.3.