示例#1
0
 /**
  * Check if need display order prices excluding price
  *
  * @param   mixed $store
  * @return  bool
  */
 public function displaySalesPriceExclTax($store = null)
 {
     return $this->_config->displaySalesPricesExclTax($store);
 }
示例#2
0
文件: Config.php 项目: shabirm/avatax
 /**
  * Check if display sales prices exclude tax
  *
  * @param mixed $store
  * @return bool
  */
 public function displaySalesPricesExclTax($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return true;
     }
     return parent::displaySalesPricesExclTax($store);
 }