Procházet zdrojové kódy

OrderShop : getOrderPayments

develop
Guillaume před 3 roky
rodič
revize
5fd720ef5a
1 změnil soubory, kde provedl 13 přidání a 1 odebrání
  1. +13
    -1
      ShopBundle/Model/OrderShop.php

+ 13
- 1
ShopBundle/Model/OrderShop.php Zobrazit soubor

@@ -303,8 +303,20 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa
/**
* @return Collection|OrderPayment[]
*/
public function getOrderPayments(): Collection
public function getOrderPayments($meanPayment = null): Collection
{
if($meanPayment) {
$orderPaymentsReturn = new ArrayCollection() ;

foreach($this->orderPayments as $orderPayment) {
if($orderPayment->getMeanPayment() == $meanPayment) {
$orderPaymentsReturn[] = $orderPayment ;
}
}

return $orderPaymentsReturn ;
}

return $this->orderPayments;
}


Načítá se…
Zrušit
Uložit