Skip to content

Commit

Permalink
Resolve PHOENIX-MEDIA#49: Wrong currency in backend orders
Browse files Browse the repository at this point in the history
  • Loading branch information
PhoenixDev - JJ committed Apr 12, 2018
1 parent 4e54ffd commit 0cf58ed
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
<?php echo $this->getExcludeTaxLabel() ?>
</td>
<td style="<?php echo $this->getStyle() ?>" class="a-right">
<?php echo $this->helper('checkout')->formatPrice($this->getCodFeeExcludeTax()) ?>
<?php echo $this->formatPrice($this->getCodFeeExcludeTax()) ?>
</td>
</tr>
<tr>
<td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
<?php echo $this->getIncludeTaxLabel() ?>
</td>
<td style="<?php echo $this->getStyle() ?>" class="a-right">
<?php echo $this->helper('checkout')->formatPrice($this->getCodFeeIncludeTax()) ?>
<?php echo $this->formatPrice($this->getCodFeeIncludeTax()) ?>
</td>
</tr>
<?php elseif($this->displayIncludeTax()) : ?>
Expand All @@ -46,7 +46,7 @@
<?php echo $this->getTotal()->getTitle() ?>
</td>
<td style="<?php echo $this->getStyle() ?>" class="a-right">
<?php echo $this->helper('checkout')->formatPrice($this->getCodFeeIncludeTax()) ?>
<?php echo $this->formatPrice($this->getCodFeeIncludeTax()) ?>
</td>
</tr>
<?php else:?>
Expand All @@ -55,7 +55,7 @@
<?php echo $this->getTotal()->getTitle() ?>
</td>
<td style="<?php echo $this->getStyle() ?>" class="a-right">
<?php echo $this->helper('checkout')->formatPrice($this->getCodFeeExcludeTax()) ?>
<?php echo $this->formatPrice($this->getCodFeeExcludeTax()) ?>
</td>
</tr>
<?php endif;?>

0 comments on commit 0cf58ed

Please sign in to comment.