Example #1
0
 /**
  * Get the final price in base currency for an ordered item including
  * taxes as discounts.
  *
  * @param Item $item the item model.
  *
  * @return float
  */
 public function getItemFinalPriceInclTax(Item $item)
 {
     return $item->getPriceInclTax() - $item->getBaseDiscountAmount();
 }