diff --git a/Concrete/Magento2PlatformOrderDecorator.php b/Concrete/Magento2PlatformOrderDecorator.php index f0d2537..c5df486 100644 --- a/Concrete/Magento2PlatformOrderDecorator.php +++ b/Concrete/Magento2PlatformOrderDecorator.php @@ -555,10 +555,8 @@ public function getQuote() { if ($this->quote === null) { $quoteId = $this->platformOrder->getQuoteId(); - $objectManager = ObjectManager::getInstance(); - $quoteFactory = $objectManager->get(QuoteFactory::class); - $this->quote = $quoteFactory->create()->load($quoteId); + $this->quote = $objectManager->create('Magento\Quote\Model\Quote')->loadByIdWithoutStore($quoteId); } return $this->quote;