예제 #1
0
 /**
  * Check if we need display price exclude tax for order/invoice subtotal
  *
  * @param mixed $store
  * @return bool
  */
 public function displaySalesSubtotalExclTax($store = null)
 {
     return $this->_config->displaySalesSubtotalExclTax($store);
 }
예제 #2
0
파일: Config.php 프로젝트: shabirm/avatax
 /**
  * Check if display sales subtotal exclude tax
  *
  * @param mixed $store
  * @return bool
  */
 public function displaySalesSubtotalExclTax($store = null)
 {
     if ($this->_getDataHelper()->isAvataxEnabled($store)) {
         return true;
     }
     return parent::displaySalesSubtotalExclTax($store);
 }