Path: Vendor/CustomModule/etc/adminhtml/routes.xml
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="custom" frontName="custom">
<module name="Vendor_CustomModule" />
<module name="Vendor_CustomModule" before="Magento_Sales" />
</route>
</router>
</config>
Path: Vendor/CustomModule/Controller/Adminhtml/Order/Create/Save.php
<?php
namespace Vendor\CustomModule\Controller\Adminhtml\Order\Create;
use Magento\Framework\Exception\PaymentException;
class Save extends \Magento\Sales\Controller\Adminhtml\Order\Create\Save
{
/**
* Saving quote and create order
*
* @return \Magento\Framework\Controller\ResultInterface
*/
public function execute()
{
$path = 'sales/*/';
$pathParams = [];
// Do something Here.
try {
// check if the creation of a new customer is allowed
if (!$this->_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);
}
}