public function render(Varien_Object $row)
 {
     $var = $row->getShippingPercentage();
     if (isset($var)) {
         return $row->getShippingPercentage() . '%';
     } else {
         return '';
     }
 }