Zen Cart Logo
Forums / Addon Shipping Modules / FedEx needs to display type on invoices

FedEx needs to display type on invoices

Views: 1,500

Results 1 to 1 of 1
10 Mar 2011, 4:53 PM
#1
sbbemn avatar

sbbemn

Zen Follower

Join Date:
Jan 2010
Posts:
182
Plugin Contributions:
0

FedEx needs to display type on invoices

Hello, I searched quite a bit for this answer.

The FedEx Module (which works 1.3.8a) does not do one important thing:

We would like to see the actual option other than just the title on our invoices.

UPS and USPS display the title and the option chosen.

I see where this works in the UPS module:
UPS.....
$this->types = array('1DM' => 'Next Day Air Early AM',
'1DML' => 'Next Day Air Early AM Letter',

and USPS.....
$this->types = array('EXPRESS' => 'Express Mail with Delivery Confirmation',
'FIRST CLASS' => 'First-Class Mail with Delivery Confirmation',

FedEX Modules are different though.....
$this->domestic_types = array();
if (MODULE_SHIPPING_FEDEX_EXPRESS_PRIORITY_OVERNIGHT == 'true') $this->domestic_types['01'] = 'FedEx Priority Overnight<sup><font size="1">®</font></sup> (No P.O. Box) ';
if (MODULE_SHIPPING_FEDEX_EXPRESS_2DAY == 'true') $this->domestic_types['03'] = 'FedEx 2Day<sup><font size="1">®</font></sup> (No P.O. Box) ';

Anyone run across this before?

This seems like a needed display for anyone shipping FedEx. Thanks.