Example #1
0
 /**
  * Check if need display order prices included tax
  *
  * @param   mixed $store
  * @return  bool
  */
 public function displaySalesPriceInclTax($store = null)
 {
     return $this->_config->displaySalesPricesInclTax($store);
 }
Example #2
0
 /**
  * Check if display sales prices include tax
  *
  * @param mixed $store
  * @return bool
  */
 public function displaySalesPricesInclTax($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return false;
     }
     return parent::displaySalesPricesInclTax($store);
 }