Exemplo n.º 1
0
 /**
  * Get the checkout surcharge for this shipping method
  */
 public function getSurcharge(IsotopeProductCollection $objCollection)
 {
     if ($this->getPrice() == 0) {
         return null;
     }
     return ProductCollectionSurcharge::createForShippingInCollection($this, $objCollection);
 }