123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Block\Adminhtml\Rma\RmaShipment;
- use Magento\Backend\Block\Widget\Container;
- use Magento\Backend\Block\Widget\Context;
- use Magento\Rma\Api\Data\RmaInterface;
- use Temando\Shipping\Model\ResourceModel\Rma\RmaAccess;
- /**
- * RMA Shipment View
- *
- * @package Temando\Shipping\Block
- * @author Rhodri Davies <rhodri.davies@temando.com>
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link http://www.temando.com/
- *
- * @api
- */
- class View extends Container
- {
- /**
- * @var RmaAccess
- */
- private $rmaAccess;
- /**
- * View constructor.
- * @param Context $context
- * @param RmaAccess $rmaAccess
- * @param mixed[] $data
- */
- public function __construct(Context $context, RmaAccess $rmaAccess, array $data = [])
- {
- $this->rmaAccess = $rmaAccess;
- parent::__construct($context, $data);
- }
- /**
- * @param RmaInterface $rma
- * @return string
- */
- private function getBackUrl(RmaInterface $rma)
- {
- if (!$rma->getEntityId()) {
- $backUrl = $this->getUrl(
- 'adminhtml/order_shipment/view',
- ['shipment_id' => $this->getRequest()->getParam('shipment_id')]
- );
- } else {
- $backUrl = $this->getUrl('adminhtml/rma/edit', ['id' => $rma->getEntityId()]);
- }
- return $backUrl;
- }
- /**
- * @return \Magento\Backend\Block\Widget\Container
- */
- protected function _prepareLayout()
- {
- $rma = $this->rmaAccess->getCurrentRma();
- if (!$rma) {
- return parent::_prepareLayout();
- }
- $backUrl = $this->getBackUrl($rma);
- $dispatchCreateUrl = $this->getUrl('temando/rma_shipment/dispatch', [
- 'rma_id' => $rma->getEntityId(),
- 'ext_shipment_id' => $this->rmaAccess->getCurrentRmaShipment()->getShipmentId()
- ]);
- $this->addButton('back', [
- 'label' => __('Back'),
- 'class' => 'back',
- 'onclick' => sprintf("setLocation('%s')", $backUrl)
- ]);
- $this->addButton('temando_dispatch_return_shipment', [
- 'label' => __('Dispatch Shipment'),
- 'class' => 'primary',
- 'onclick' => sprintf("setLocation('%s')", $dispatchCreateUrl)
- ]);
- return parent::_prepareLayout();
- }
- /**
- * Prepare html output
- *
- * @return string
- */
- protected function _toHtml()
- {
- $html = parent::_toHtml();
- // append all child blocks
- $html.= $this->getChildHtml();
- return $html;
- }
- }
|