Example #1
0
 /**
  * Get sales item (quote item, order item etc) row total price including tax excluding wee
  *
  * @param Varien_Object $item
  * @return float
  */
 public function getBaseSubtotalInclTax($item)
 {
     $tax = $item->getBaseTaxAmount() + $item->getBaseDiscountTaxCompensation() - $this->_getWeeeHelper()->getBaseTotalRowTaxAppliedForWeeeTax($item);
     return $item->getBaseRowTotal() + $tax;
 }