|
Hi,
I have created a shipping method. But after I’ve completed a transaction in admin panel the order full view doesn’t shows any shipping description. I couldn’t find any error with my code. Any suggestions pls..
My Model is as follows. Eventhough $desc returns the correct value the admin panel shows that there is no shipping info.
<?php
class Tal_Deliveryrate_Model_Sales_Order extends Mage_Sales_Model_Order
{
public function getShippingDescription()
{
$desc = parent::getShippingDescription();
return $desc;
}
}
|