Skip to content

Commit 629bd37

Browse files
committed
BUG#AC-714: Tier pricing on configurables inc/ex vat prices are the same value
1 parent 9d69186 commit 629bd37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Pricing/Price/TierPrice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ function (&$priceData) {
177177
/* convert string value to float */
178178
$priceData['price_qty'] *= 1;
179179
if ($this->getConfigTaxDisplayType() === Config::DISPLAY_TYPE_BOTH) {
180-
$exclTaxPrice = $this->calculator->getAmount($priceData['price'], $this->product, true);
180+
$exclTaxPrice = $this->calculator->getAmount($priceData['price'], $this->product);
181181
$priceData['excl_tax_price'] = $exclTaxPrice;
182182
}
183183
$priceData['price'] = $this->applyAdjustment($priceData['price']);

0 commit comments

Comments
 (0)