| Current Path : /home/rtorresani/www/vendor/magento/module-sales/Controller/Adminhtml/Order/Invoice/ |
| Current File : //home/rtorresani/www/vendor/magento/module-sales/Controller/Adminhtml/Order/Invoice/NewAction.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Controller\Adminhtml\Order\Invoice;
use Magento\Framework\App\Action\HttpGetActionInterface;
use Magento\Backend\App\Action;
use Magento\Framework\Registry;
use Magento\Framework\View\Result\PageFactory;
use Magento\Sales\Api\OrderRepositoryInterface;
use Magento\Sales\Model\Service\InvoiceService;
/**
* Create new invoice action.
*/
class NewAction extends \Magento\Backend\App\Action implements HttpGetActionInterface
{
/**
* Authorization level of a basic admin session
*
* @see _isAllowed()
*/
const ADMIN_RESOURCE = 'Magento_Sales::sales_invoice';
/**
* @var Registry
*/
protected $registry;
/**
* @var PageFactory
*/
protected $resultPageFactory;
/**
* @var InvoiceService
*/
private $invoiceService;
/**
* @var OrderRepositoryInterface
*/
private $orderRepository;
/**
* @param Action\Context $context
* @param Registry $registry
* @param PageFactory $resultPageFactory
* @param InvoiceService $invoiceService
* @param OrderRepositoryInterface|null $orderRepository
*/
public function __construct(
Action\Context $context,
Registry $registry,
PageFactory $resultPageFactory,
InvoiceService $invoiceService,
OrderRepositoryInterface $orderRepository = null
) {
parent::__construct($context);
$this->registry = $registry;
$this->resultPageFactory = $resultPageFactory;
$this->invoiceService = $invoiceService;
$this->orderRepository = $orderRepository ?: \Magento\Framework\App\ObjectManager::getInstance()
->get(OrderRepositoryInterface::class);
}
/**
* Redirect to order view page
*
* @param int $orderId
* @return \Magento\Backend\Model\View\Result\Redirect
*/
protected function _redirectToOrder($orderId)
{
/** @var \Magento\Backend\Model\View\Result\Redirect $resultRedirect */
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath('sales/order/view', ['order_id' => $orderId]);
return $resultRedirect;
}
/**
* Invoice create page
*
* @return \Magento\Framework\Controller\ResultInterface
*/
public function execute()
{
$orderId = $this->getRequest()->getParam('order_id');
$invoiceData = $this->getRequest()->getParam('invoice', []);
$invoiceItems = $invoiceData['items'] ?? [];
try {
/** @var \Magento\Sales\Model\Order $order */
$order = $this->orderRepository->get($orderId);
if (!$order->canInvoice()) {
throw new \Magento\Framework\Exception\LocalizedException(
__('The order does not allow an invoice to be created.')
);
}
$invoice = $this->invoiceService->prepareInvoice($order, $invoiceItems);
if (!$invoice->getTotalQty()) {
throw new \Magento\Framework\Exception\LocalizedException(
__("The invoice can't be created without products. Add products and try again.")
);
}
$this->registry->register('current_invoice', $invoice);
$comment = $this->_objectManager->get(\Magento\Backend\Model\Session::class)->getCommentText(true);
if ($comment) {
$invoice->setCommentText($comment);
}
/** @var \Magento\Backend\Model\View\Result\Page $resultPage */
$resultPage = $this->resultPageFactory->create();
$resultPage->setActiveMenu('Magento_Sales::sales_order');
$resultPage->getConfig()->getTitle()->prepend(__('Invoices'));
$resultPage->getConfig()->getTitle()->prepend(__('New Invoice'));
return $resultPage;
} catch (\Magento\Framework\Exception\LocalizedException $exception) {
$this->messageManager->addErrorMessage($exception->getMessage());
return $this->_redirectToOrder($orderId);
} catch (\Exception $exception) {
$this->messageManager->addExceptionMessage($exception, 'Cannot create an invoice.');
return $this->_redirectToOrder($orderId);
}
}
}