Example #1
0
 /**
  * Check if need display cart prices excluding price
  *
  * @param   mixed $store
  * @return  bool
  */
 public function displayCartPriceExclTax($store = null)
 {
     return $this->_config->displayCartPricesExclTax($store);
 }
Example #2
0
 /**
  * Check if display cart prices excluded tax
  *
  * @param null|int $store
  * @return bool
  */
 public function displayCartPricesExclTax($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return true;
     }
     return parent::displayCartPricesExclTax($store);
 }