Skip to content

Commit

Permalink
Merge pull request #1 from sarron93/sarron93-issues-29213
Browse files Browse the repository at this point in the history
Fix Issues 29213
  • Loading branch information
sarron93 authored Jul 20, 2020
2 parents 2841088 + 2af8717 commit 238ce85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,11 +194,11 @@ public function getCondition()
$rate = $this->_getRate($displayCurrency, $this->_getColumnCurrencyCode());

if (isset($value['from'])) {
$value['from'] *= $rate;
$value['from'] = (float) $value['from'] * $rate;
}

if (isset($value['to'])) {
$value['to'] *= $rate;
$value['to'] = (float) $value['to'] * $rate;
}

$this->prepareRates($displayCurrency);
Expand Down

0 comments on commit 238ce85

Please sign in to comment.