Skip to content

Commit 6995314

Browse files
committed
AC-15385::Wrong product price is displayed on the shopping cart with different currencies in different store views
1 parent 4baea6d commit 6995314

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Tax/Model/Sales/Total/Quote/CommonTaxCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ protected function processAppliedTaxes(
746746
*/
747747
public function updateItemTaxInfo($quoteItem, $itemTaxDetails, $baseItemTaxDetails, $store)
748748
{
749-
$quoteItem->setPrice($itemTaxDetails->getPrice());
749+
$quoteItem->setPrice($baseItemTaxDetails->getPrice());
750750
if ($quoteItem->getCustomPrice() && $this->taxHelper->applyTaxOnCustomPrice()) {
751751
$quoteItem->setCustomPrice($itemTaxDetails->getPrice());
752752
}

0 commit comments

Comments
 (0)