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 548dd31 commit 7001229Copy full SHA for 7001229
app/code/Magento/Backend/Model/Session/Quote.php
@@ -149,7 +149,8 @@ public function getQuote()
149
$this->_quote = $this->quoteFactory->create();
150
if ($this->getStoreId()) {
151
if (!$this->getQuoteId()) {
152
- $this->_quote->setCustomerGroupId($this->groupManagement->getDefaultGroup($this->getStoreId())->getId());
+ $customerGroupId = $this->groupManagement->getDefaultGroup($this->getStoreId())->getId();
153
+ $this->_quote->setCustomerGroupId($customerGroupId);
154
$this->_quote->setIsActive(false);
155
$this->_quote->setStoreId($this->getStoreId());
156
0 commit comments