コード例 #1
0
ファイル: Renderer.php プロジェクト: shabbirvividads/magento2
 /**
  * Return whether display setting is to display price including tax
  *
  * @return bool
  */
 public function displayPriceInclTax()
 {
     switch ($this->zone) {
         case PricingRender::ZONE_CART:
             return $this->taxHelper->displayCartPriceInclTax($this->storeId);
         case PricingRender::ZONE_EMAIL:
         case PricingRender::ZONE_SALES:
             return $this->taxHelper->displaySalesPriceInclTax($this->storeId);
         default:
             return $this->taxHelper->displayCartPriceInclTax($this->storeId);
     }
 }