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 a6f2d9f commit 23ca2e6Copy full SHA for 23ca2e6
app/code/Magento/Quote/Model/Quote/TotalsCollector.php
@@ -144,6 +144,7 @@ public function collect(\Magento\Quote\Model\Quote $quote)
144
145
$total->setSubtotal(0);
146
$total->setBaseSubtotal(0);
147
+ $total->setBaseSubtotalTotalInclTax(0);
148
149
$total->setSubtotalWithDiscount(0);
150
$total->setBaseSubtotalWithDiscount(0);
@@ -269,7 +270,7 @@ public function collectAddressTotals(
269
270
'total' => $total
271
]
272
);
- // $total->setBaseSubtotalTotalInclTax($total->getBaseSubtotalInclTax());
273
+ $total->setBaseSubtotalTotalInclTax($total->getBaseSubtotalInclTax());
274
$address->addData($total->getData());
275
$address->setAppliedTaxes($total->getAppliedTaxes());
276
return $total;
0 commit comments