/**
  * Check if need display order prices excluding and including tax
  *
  * @param   mixed $store
  * @return  bool
  */
 public function displaySalesBothPrices($store = null)
 {
     return $this->_config->displaySalesPricesBoth($store);
 }
Exemple #2
0
 /**
  * Check if display sales prices include and exclude tax
  *
  * @param mixed $store
  * @return bool
  */
 public function displaySalesPricesBoth($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return false;
     }
     return parent::displaySalesPricesBoth($store);
 }