Пример #1
0
 /**
  * Returns product netto price with applied discounts and vouchers
  *
  * @return double
  */
 public function getDiscountedNettoPrice()
 {
     if ($this->_oNotDiscountedProductsPriceList) {
         return $this->_dDiscountedProductNettoPrice + $this->_oNotDiscountedProductsPriceList->getNettoSum();
     }
     return false;
 }