_authorization->isAllowed('Magento_Customer::manage') && !$this->_getSession()->getCustomerId() && !$this->_getSession()->getQuote()->getCustomerIsGuest() ) { return $this->resultForwardFactory->create()->forward('denied'); } $this->_getOrderCreateModel()->getQuote()->setCustomerId($this->_getSession()->getCustomerId()); $this->_processActionData('save'); $paymentData = $this->getRequest()->getPost('payment'); if ($paymentData) { $paymentData['checks'] = [ \Magento\Payment\Model\Method\AbstractMethod::CHECK_USE_INTERNAL, \Magento\Payment\Model\Method\AbstractMethod::CHECK_USE_FOR_COUNTRY, \Magento\Payment\Model\Method\AbstractMethod::CHECK_USE_FOR_CURRENCY, \Magento\Payment\Model\Method\AbstractMethod::CHECK_ORDER_TOTAL_MIN_MAX, \Magento\Payment\Model\Method\AbstractMethod::CHECK_ZERO_TOTAL, ]; $this->_getOrderCreateModel()->setPaymentData($paymentData); $this->_getOrderCreateModel()->getQuote()->getPayment()->addData($paymentData); } $order = $this->_getOrderCreateModel() ->setIsValidate(true) ->importPostData($this->getRequest()->getPost('order')) ->createOrder(); $this->_getSession()->clearStorage(); $this->messageManager->addSuccessMessage(__('You created the order.')); if ($this->_authorization->isAllowed('Magento_Sales::actions_view')) { $pathParams = ['order_id' => $order->getId()]; $path = 'sales/order/view'; } else { $path = 'sales/order/index'; } } catch (PaymentException $e) { $this->_getOrderCreateModel()->saveQuote(); $message = $e->getMessage(); if (!empty($message)) { $this->messageManager->addErrorMessage($message); } } catch (\Magento\Framework\Exception\LocalizedException $e) { // customer can be created before place order flow is completed and should be stored in current session $this->_getSession()->setCustomerId((int)$this->_getSession()->getQuote()->getCustomerId()); $message = $e->getMessage(); if (!empty($message)) { $this->messageManager->addErrorMessage($message); } } catch (\Exception $e) { $this->messageManager->addExceptionMessage($e, __('Order saving error: %1', $e->getMessage())); } return $this->resultRedirectFactory->create()->setPath($path, $pathParams); } }