From 07f97d8e98ba5696cb8accd5bc40fd1fbed49980 Mon Sep 17 00:00:00 2001 From: Anton Kaplya <anton.kaplya@magento.com> Date: Tue, 26 Jan 2016 21:41:19 +0200 Subject: [PATCH] MAGETWO-47402: All type products are available --- app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php b/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php index f6fb341740b..863436c6eae 100644 --- a/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php +++ b/app/code/Magento/Tax/Plugin/Checkout/CustomerData/Cart.php @@ -58,9 +58,6 @@ class Cart */ public function afterGetSectionData(\Magento\Checkout\CustomerData\Cart $subject, $result) { - if (!$this->getQuote()->getId()) { - return $result; - } $result['subtotal_incl_tax'] = $this->checkoutHelper->formatPrice($this->getSubtotalInclTax()); $result['subtotal_excl_tax'] = $this->checkoutHelper->formatPrice($this->getSubtotalExclTax()); -- GitLab