Skip to content

Commit

Permalink
As low as displays incorrect pricing on category page, tax appears to…
Browse files Browse the repository at this point in the history
… be added twice #21383

- excluded tax from min price
  • Loading branch information
Jitheesh committed Feb 22, 2019
1 parent d1ce6a4 commit c9fff89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ public function getAmount(SaleableInterface $saleableItem)

return $value === null
? null
: $this->calculator->getAmount($value, $saleableItem);
: $this->calculator->getAmount($value, $saleableItem, 'tax');
}
}

0 comments on commit c9fff89

Please sign in to comment.