Esempio n. 1
0
 /**
  * @param CartInterface $cart
  *
  * @return \WellCommerce\Bundle\OrderBundle\Entity\OrderInterface
  */
 public function prepareOrderFromCart(CartInterface $cart)
 {
     $order = $this->initResource();
     $order->setCurrency($cart->getCurrency());
     $order->setPaymentMethod($cart->getPaymentMethod());
     $order->setShippingMethod($cart->getShippingMethodCost()->getShippingMethod());
     $order->setBillingAddress($cart->getBillingAddress());
     $order->setShippingAddress($cart->getShippingAddress());
     $order->setContactDetails($cart->getContactDetails());
     $order->setShop($cart->getShop());
     $order->setSessionId($cart->getSessionId());
     $order->setClient($cart->getClient());
     $order->setCurrentStatus($cart->getPaymentMethod()->getDefaultOrderStatus());
     $order->setCoupon($cart->getCoupon());
     $this->prepareOrderProducts($cart, $order);
     $this->prepareOrderShippingDetails($cart, $order);
     $this->eventDispatcher->dispatchOnPostOrderPrepared($order);
     return $order;
 }
 /**
  * Prepares the order
  *
  * @param CartInterface $cart
  *
  * @return OrderInterface
  */
 public function prepareOrder(CartInterface $cart)
 {
     $order = $this->factory->createOrderFromCart($cart);
     $this->eventDispatcher->dispatchOnPostOrderPrepared($order);
     return $order;
 }