示例#1
0
文件: Shipping.php 项目: Aziz-JH/core
 /**
  * Get the checkout surcharge for this shipping method
  */
 public function getSurcharge(IsotopeProductCollection $objCollection)
 {
     if ($this->getPrice() == 0) {
         return null;
     }
     return ProductCollectionSurcharge::createForShippingInCollection($this, $objCollection);
 }