![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-sales/Controller/Adminhtml/Order/Invoice/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Controller\Adminhtml\Order\Invoice; use Magento\Backend\App\Action\Context; use Magento\Backend\Model\View\Result\ForwardFactory; use Magento\Framework\App\Action\HttpPostActionInterface; use Magento\Framework\App\ObjectManager; use Magento\Framework\Exception\LocalizedException; use Magento\Sales\Api\InvoiceRepositoryInterface; use Magento\Sales\Model\Order\Email\Sender\InvoiceCommentSender; use Magento\Framework\Registry; use Magento\Framework\Controller\Result\JsonFactory; use Magento\Framework\View\Result\PageFactory; use Magento\Framework\Controller\Result\RawFactory; /** * Class AddComment */ class AddComment extends \Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\View implements HttpPostActionInterface { /** * @var InvoiceCommentSender */ protected $invoiceCommentSender; /** * @var JsonFactory */ protected $resultJsonFactory; /** * @var PageFactory */ protected $resultPageFactory; /** * @var RawFactory */ protected $resultRawFactory; /** * @var InvoiceRepositoryInterface */ protected $invoiceRepository; /** * @param Context $context * @param Registry $registry * @param ForwardFactory $resultForwardFactory * @param InvoiceCommentSender $invoiceCommentSender * @param JsonFactory $resultJsonFactory * @param PageFactory $resultPageFactory * @param RawFactory $resultRawFactory * @param InvoiceRepositoryInterface $invoiceRepository */ public function __construct( Context $context, Registry $registry, ForwardFactory $resultForwardFactory, InvoiceCommentSender $invoiceCommentSender, JsonFactory $resultJsonFactory, PageFactory $resultPageFactory, RawFactory $resultRawFactory, InvoiceRepositoryInterface $invoiceRepository = null ) { $this->invoiceCommentSender = $invoiceCommentSender; $this->resultJsonFactory = $resultJsonFactory; $this->resultPageFactory = $resultPageFactory; $this->resultRawFactory = $resultRawFactory; $this->invoiceRepository = $invoiceRepository ?: ObjectManager::getInstance()->get(InvoiceRepositoryInterface::class); parent::__construct($context, $registry, $resultForwardFactory, $invoiceRepository); } /** * Add comment to invoice action * * @return \Magento\Framework\Controller\ResultInterface */ public function execute() { try { $this->getRequest()->setParam('invoice_id', $this->getRequest()->getParam('id')); $data = $this->getRequest()->getPost('comment'); if (empty($data['comment'])) { throw new LocalizedException(__('The comment is missing. Enter and try again.')); } $invoice = $this->getInvoice(); if (!$invoice) { /** @var \Magento\Backend\Model\View\Result\Forward $resultForward */ $resultForward = $this->resultForwardFactory->create(); return $resultForward->forward('noroute'); } $invoice->addComment( $data['comment'], isset($data['is_customer_notified']), isset($data['is_visible_on_front']) ); $this->invoiceCommentSender->send($invoice, !empty($data['is_customer_notified']), $data['comment']); $this->invoiceRepository->save($invoice); /** @var \Magento\Backend\Model\View\Result\Page $resultPage */ $resultPage = $this->resultPageFactory->create(); $resultPage->getConfig()->getTitle()->prepend(__('Invoices')); $response = $resultPage->getLayout()->getBlock('invoice_comments')->toHtml(); } catch (LocalizedException $e) { $response = ['error' => true, 'message' => $e->getMessage()]; } catch (\Exception $e) { $response = ['error' => true, 'message' => __('Cannot add new comment.')]; } if (is_array($response)) { /** @var \Magento\Framework\Controller\Result\Json $resultJson */ $resultJson = $this->resultJsonFactory->create(); $resultJson->setData($response); return $resultJson; } else { /** @var \Magento\Framework\Controller\Result\Raw $resultRaw */ $resultRaw = $this->resultRawFactory->create(); $resultRaw->setContents($response); return $resultRaw; } } }