123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Order\PrintOrder;
- use Magento\Framework\View\Element\AbstractBlock;
- /**
- * Sales order details block
- *
- * @api
- * @since 100.0.2
- */
- class Invoice extends \Magento\Sales\Block\Items\AbstractItems
- {
- /**
- * Core registry
- *
- * @var \Magento\Framework\Registry
- */
- protected $_coreRegistry = null;
- /**
- * @var \Magento\Payment\Helper\Data
- */
- protected $_paymentHelper;
- /**
- * @var \Magento\Sales\Model\Order\Address\Renderer
- */
- protected $addressRenderer;
- /**
- * @param \Magento\Framework\View\Element\Template\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param \Magento\Payment\Helper\Data $paymentHelper
- * @param \Magento\Sales\Model\Order\Address\Renderer $addressRenderer
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\View\Element\Template\Context $context,
- \Magento\Framework\Registry $registry,
- \Magento\Payment\Helper\Data $paymentHelper,
- \Magento\Sales\Model\Order\Address\Renderer $addressRenderer,
- array $data = []
- ) {
- $this->addressRenderer = $addressRenderer;
- $this->_paymentHelper = $paymentHelper;
- $this->_coreRegistry = $registry;
- parent::__construct($context, $data);
- }
- /**
- * @return void
- */
- protected function _prepareLayout()
- {
- $this->pageConfig->getTitle()->set(__('Order # %1', $this->getOrder()->getRealOrderId()));
- $infoBlock = $this->_paymentHelper->getInfoBlock($this->getOrder()->getPayment(), $this->getLayout());
- $this->setChild('payment_info', $infoBlock);
- }
- /**
- * @return string
- */
- public function getBackUrl()
- {
- return $this->getUrl('*/*/history');
- }
- /**
- * @return string
- */
- public function getPrintUrl()
- {
- return $this->getUrl('*/*/print');
- }
- /**
- * @return string
- */
- public function getPaymentInfoHtml()
- {
- return $this->getChildHtml('payment_info');
- }
- /**
- * @return array|null
- */
- public function getOrder()
- {
- return $this->_coreRegistry->registry('current_order');
- }
- /**
- * @return array|null
- */
- public function getInvoice()
- {
- return $this->_coreRegistry->registry('current_invoice');
- }
- /**
- * @param AbstractBlock $renderer
- * @return $this
- */
- protected function _prepareItem(AbstractBlock $renderer)
- {
- $renderer->setPrintStatus(true);
- return parent::_prepareItem($renderer);
- }
- /**
- * Get html of invoice totals block
- *
- * @param \Magento\Sales\Model\Order\Invoice $invoice
- * @return string
- */
- public function getInvoiceTotalsHtml($invoice)
- {
- $html = '';
- $totals = $this->getChildBlock('invoice_totals');
- if ($totals) {
- $totals->setInvoice($invoice);
- $html = $totals->toHtml();
- }
- return $html;
- }
- /**
- * Formats order address to html, pdf and etc. formats
- *
- * @param \Magento\Sales\Model\Order\Address $address
- * @param string $format
- * @return null|string
- */
- public function formatAddress(\Magento\Sales\Model\Order\Address $address, $format)
- {
- return $this->addressRenderer->format($address, $format);
- }
- }
|