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