Example #1
0
 /**
  * Display subtotal including tax
  *
  * @param Item $item
  * @return string
  */
 public function displaySubtotalInclTax($item)
 {
     if ($item->getTaxBeforeDiscount()) {
         $tax = $item->getTaxBeforeDiscount();
     } else {
         $tax = $item->getTaxAmount() ? $item->getTaxAmount() : 0;
     }
     return $this->formatPrice($item->getRowTotal() + $tax);
 }