weeeHelper = $weeeHelper; $this->storeManager = $storeManager; $this->weeeConfig = $weeeConfig; } /** * {@inheritdoc} */ public function getConfig() { return [ 'isDisplayPriceWithWeeeDetails' => $this->iDisplayPriceWithWeeeDetails(), 'isDisplayFinalPrice' => $this->isDisplayFinalPrice(), 'isWeeeEnabled' => $this->isWeeeEnabled(), 'isIncludedInSubtotal' => $this->isIncludedInSubtotal(), 'getIncludeWeeeFlag' => $this->getIncludeWeeeFlag() ]; } /** * @return int */ private function getStoreId() { return $this->storeManager->getStore()->getId(); } /** * Whether to display weee details together with price * * @return bool */ public function iDisplayPriceWithWeeeDetails() { if (!$this->weeeHelper->isEnabled($this->getStoreId())) { return false; } $displayWeeeDetails = $this->weeeHelper->typeOfDisplay( [WeeeDisplayConfig::DISPLAY_INCL_DESCR, WeeeDisplayConfig::DISPLAY_EXCL_DESCR_INCL], 'cart', $this->storeManager->getStore()->getId() ); if (!$displayWeeeDetails) { return false; } return true; } /** * Whether to display final price that include Weee amounts * * @return bool */ public function isDisplayFinalPrice() { $flag = $this->weeeHelper->typeOfDisplay( WeeeDisplayConfig::DISPLAY_EXCL_DESCR_INCL, 'cart', $this->storeManager->getStore()->getId() ); if (!$flag) { return false; } return true; } /** * Check if fixed taxes are used in system * * @return bool */ public function isWeeeEnabled() { return $this->weeeHelper->isEnabled($this->storeManager->getStore()->getId()); } /** * Return the flag whether to include weee in the price * * @return bool|int */ public function getIncludeWeeeFlag() { $includeWeee = $this->weeeHelper->typeOfDisplay( [WeeeDisplayConfig::DISPLAY_INCL_DESCR, WeeeDisplayConfig::DISPLAY_INCL], 'cart', $this->getStoreId() ); return $includeWeee; } /** * Display FPT row in subtotal or not * * @return bool */ public function isIncludedInSubtotal() { return $this->weeeConfig->isEnabled() && $this->weeeConfig->includeInSubtotal(); } }