123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- /**
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Controller\Adminhtml\Order\Invoice;
- use Magento\Backend\App\Action\Context;
- use Magento\Framework\Exception\LocalizedException;
- use Magento\Sales\Model\Order\Email\Sender\InvoiceCommentSender;
- use Magento\Sales\Model\Order\Invoice;
- use Magento\Backend\App\Action;
- use Magento\Framework\Registry;
- use Magento\Framework\Controller\Result\JsonFactory;
- use Magento\Framework\View\Result\PageFactory;
- use Magento\Framework\Controller\Result\RawFactory;
- class AddComment extends \Magento\Sales\Controller\Adminhtml\Invoice\AbstractInvoice\View
- {
- /**
- * @var InvoiceCommentSender
- */
- protected $invoiceCommentSender;
- /**
- * @var JsonFactory
- */
- protected $resultJsonFactory;
- /**
- * @var PageFactory
- */
- protected $resultPageFactory;
- /**
- * @var RawFactory
- */
- protected $resultRawFactory;
- /**
- * @param Context $context
- * @param Registry $registry
- * @param \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory
- * @param InvoiceCommentSender $invoiceCommentSender
- * @param JsonFactory $resultJsonFactory
- * @param PageFactory $resultPageFactory
- * @param RawFactory $resultRawFactory
- */
- public function __construct(
- Context $context,
- Registry $registry,
- \Magento\Backend\Model\View\Result\ForwardFactory $resultForwardFactory,
- InvoiceCommentSender $invoiceCommentSender,
- JsonFactory $resultJsonFactory,
- PageFactory $resultPageFactory,
- RawFactory $resultRawFactory
- ) {
- $this->invoiceCommentSender = $invoiceCommentSender;
- $this->resultJsonFactory = $resultJsonFactory;
- $this->resultPageFactory = $resultPageFactory;
- $this->resultRawFactory = $resultRawFactory;
- parent::__construct($context, $registry, $resultForwardFactory);
- }
- /**
- * 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']);
- $invoice->save();
- /** @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;
- }
- }
- }
|