12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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 as HttpGetActionInterface;
- use Magento\Framework\View\Result\PageFactory;
- use Magento\Backend\App\Action\Context;
- use Magento\Framework\Registry;
- class View extends \Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\View implements HttpGetActionInterface
- {
- /**
- * @var PageFactory
- */
- protected $resultPageFactory;
- /**
- * @param Context $context
- * @param Registry $registry
- * @param \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory
- * @param PageFactory $resultPageFactory
- */
- public function __construct(
- Context $context,
- Registry $registry,
- \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory,
- PageFactory $resultPageFactory
- ) {
- $this->resultPageFactory = $resultPageFactory;
- parent::__construct($context, $registry, $resultForwardFactory);
- }
- /**
- * Invoice information page
- *
- * @return \Magento\Framework\Controller\ResultInterface
- */
- public function execute()
- {
- $invoice = $this->getInvoice();
- if (!$invoice) {
- /** @var \Magento\Framework\Controller\Result\Forward $resultForward */
- $resultForward = $this->resultForwardFactory->create();
- return $resultForward->forward('noroute');
- }
- /** @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(sprintf("#%s", $invoice->getIncrementId()));
- $resultPage->getLayout()->getBlock(
- 'sales_invoice_view'
- )->updateBackButtonUrl(
- $this->getRequest()->getParam('come_from')
- );
- return $resultPage;
- }
- }
|