Exemplo n.º 1
0
 /**
  * Check if need display tax column in for shopping cart/order items
  *
  * @param   mixed $store
  * @return  bool
  */
 public function displayTaxColumn($store = null)
 {
     return $this->_config->displayCartPricesBoth();
 }
Exemplo n.º 2
0
 /**
  * Check if display cart prices included and excluded tax
  *
  * @param null|int $store
  * @return bool
  */
 public function displayCartPricesBoth($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return false;
     }
     return parent::displayCartPricesBoth($store);
 }