checkoutSession = $checkoutSession; parent::__construct($context); } /** * Retrieve checkout quote * * @return \Magento\Quote\Model\Quote */ public function getQuote() { return $this->checkoutSession->getQuote(); } /** * Get maximum quantity allowed for shipping to multiple addresses * * @return int */ public function getMaximumQty() { return (int)$this->scopeConfig->getValue( self::XML_PATH_CHECKOUT_MULTIPLE_MAXIMUM_QUANTITY, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } /** * Check if multishipping checkout is available * There should be a valid quote in checkout session. If not, only the config value will be returned * * @return bool */ public function isMultishippingCheckoutAvailable() { $quote = $this->getQuote(); $isMultiShipping = $this->scopeConfig->isSetFlag( self::XML_PATH_CHECKOUT_MULTIPLE_AVAILABLE, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); if (!$quote || !$quote->hasItems()) { return $isMultiShipping; } return $isMultiShipping && !$quote->hasItemsWithDecimalQty() && $quote->validateMinimumAmount( true ) && $quote->getItemsSummaryQty() - $quote->getItemVirtualQty() > 0 && $quote->getItemsSummaryQty() <= $this->getMaximumQty(); } }