1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Controller\Adminhtml\Order;
- use Magento\Framework\App\Action\HttpPostActionInterface as HttpPostActionInterface;
- class Cancel extends \Magento\Sales\Controller\Adminhtml\Order implements HttpPostActionInterface
- {
- /**
- * Authorization level of a basic admin session
- *
- * @see _isAllowed()
- */
- const ADMIN_RESOURCE = 'Magento_Sales::cancel';
- /**
- * Cancel order
- *
- * @return \Magento\Backend\Model\View\Result\Redirect
- */
- public function execute()
- {
- $resultRedirect = $this->resultRedirectFactory->create();
- if (!$this->isValidPostRequest()) {
- $this->messageManager->addErrorMessage(__('You have not canceled the item.'));
- return $resultRedirect->setPath('sales/*/');
- }
- $order = $this->_initOrder();
- if ($order) {
- try {
- $this->orderManagement->cancel($order->getEntityId());
- $this->messageManager->addSuccessMessage(__('You canceled the order.'));
- } catch (\Magento\Framework\Exception\LocalizedException $e) {
- $this->messageManager->addErrorMessage($e->getMessage());
- } catch (\Exception $e) {
- $this->messageManager->addErrorMessage(__('You have not canceled the item.'));
- $this->_objectManager->get(\Psr\Log\LoggerInterface::class)->critical($e);
- }
- return $resultRedirect->setPath('sales/order/view', ['order_id' => $order->getId()]);
- }
- return $resultRedirect->setPath('sales/*/');
- }
- }
|