Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

29 lines
873B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Order;
  3. use App\Entity\Order\OrderPayment;
  4. use Lc\CaracoleBundle\Model\Order\OrderPaymentInterface;
  5. use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class OrderPaymentFactory extends AbstractFactory
  8. {
  9. public function create(OrderShopInterface $orderShop, string $meanPayment, float $amount): OrderPaymentInterface
  10. {
  11. $orderPayment = $this->createBase($orderShop);
  12. $orderPayment->setMeanPayment($meanPayment);
  13. $orderPayment->setAmount($amount);
  14. $orderPayment->setPaidAt(new \DateTime());
  15. $orderPayment->setEditable(false);
  16. return $orderPayment;
  17. }
  18. public function createBase($orderShop){
  19. $orderPayment = new OrderPayment();
  20. $orderPayment->setOrderShop($orderShop);
  21. return $orderPayment;
  22. }
  23. }