Пример #1
0
 /**
  * @inheritdoc
  */
 public function getCartItemDiscount(CartItem $cartItem)
 {
     return $cartItem->getQuantity() * $cartItem->getPrice() * ($this->percentage / 100);
 }
Пример #2
0
 /**
  * @inheritdoc
  */
 public function getCartItemDiscount(CartItem $cartItem)
 {
     return $cartItem->getQuantity() * $this->amount;
 }
Пример #3
0
 /**
  * @inheritdoc
  */
 public function getCartItemDiscount(CartItem $cartItem)
 {
     return $cartItem->getQuantity() * $cartItem->getRealTaxedPrice($this->facade->getDeliveryCountry()) * ($this->percentage / 100);
 }