コード例 #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);
 }
コード例 #2
0
ファイル: Config.php プロジェクト: shabirm/avatax
 /**
  * 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);
 }