Index: src/system/classes/shopping_cart/OrderDetailsCartContentView.inc.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- src/system/classes/shopping_cart/OrderDetailsCartContentView.inc.php (revision 1fb3af40c23f3aac76740f8af673bbe69d87b738) +++ src/system/classes/shopping_cart/OrderDetailsCartContentView.inc.php (revision ) @@ -190,6 +190,7 @@ } $this->total = $this->cart->show_total(); + $this->total2 = $this->total; $this->_setCustomerDiscount(); @@ -275,7 +276,7 @@ $this->total -= $this->discount; } $this->totalContent .= SUB_TITLE_SUB_TOTAL . $this->xtcPrice->xtcFormat($this->total, true) . '
'; - $this->total = $this->total + $this->discount; + //$this->total = $this->total + $this->discount; } else { @@ -307,7 +308,8 @@ $tax += $valueTax['value']; } - $this->total = (double)$this->total - (double)$tax + $this->discount; + //$this->total = (double)$this->total - (double)$tax + $this->discount; + $this->total2 = $this->xtcPrice->xtcFormat((double)$this->total - (double)$tax + $this->discount, false); } } } \ No newline at end of file