예제 #1
0
파일: Data.php 프로젝트: nblair/magescotch
 /**
  * Check if weee tax amount should be included to subtotal
  *
  * @param   null|string|bool|int|Store $store
  * @return  bool
  */
 public function includeInSubtotal($store = null)
 {
     return $this->_weeeConfig->includeInSubtotal($store);
 }
 /**
  * Display FPT row in subtotal or not
  *
  * @return bool
  */
 public function isIncludedInSubtotal()
 {
     return $this->weeeConfig->isEnabled() && $this->weeeConfig->includeInSubtotal();
 }