We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5d2acc commit 14b3fdbCopy full SHA for 14b3fdb
src/app/code/community/Zendesk/Zendesk/Helper/Data.php
@@ -541,8 +541,8 @@ public function getOrderDetailBasic($order)
541
'name' => $order->getStoreName()
542
),
543
'display_price' => array(
544
- 'with_tax' => $this->formatPrice($order->getGrandTotal() + $order->getTaxAmount(), $currency),
545
- 'without_tax' => $this->formatPrice($order->getGrandTotal(), $currency),
+ 'with_tax' => $this->formatPrice($order->getGrandTotal(), $currency),
+ 'without_tax' => $this->formatPrice($order->getGrandTotal() - $order->getTaxAmount(), $currency),
546
'tax' => $this->formatPrice($order->getTaxAmount(), $currency)
547
548
'timestamps' => array(
0 commit comments