We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e81f28e commit 1036496Copy full SHA for 1036496
app/code/Magento/InstantPurchase/Model/QuoteManagement/QuoteCreation.php
@@ -57,9 +57,11 @@ public function createQuote(
57
$quote->setCustomer($customer->getDataModel());
58
$quote->setCustomerIsGuest(0);
59
$quote->getShippingAddress()
60
- ->importCustomerAddressData($shippingAddress->getDataModel());
+ ->importCustomerAddressData($shippingAddress->getDataModel())
61
+ ->setCollectShippingRates(true);
62
$quote->getBillingAddress()
- ->importCustomerAddressData($billingAddress->getDataModel());
63
+ ->importCustomerAddressData($billingAddress->getDataModel())
64
65
$quote->setInventoryProcessed(false);
66
return $quote;
67
}
0 commit comments