예제 #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();
 }
예제 #2
0
파일: Config.php 프로젝트: shabirm/avatax
 /**
  * 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);
 }