_coreRegistry = $registry; parent::__construct($context, $data); } /** * Constructor * * @return void */ protected function _construct() { $this->_objectId = 'order_id'; $this->_controller = 'adminhtml_order_creditmemo'; $this->_mode = 'create'; parent::_construct(); $this->buttonList->remove('delete'); $this->buttonList->remove('save'); } /** * Retrieve creditmemo model instance * * @return \Magento\Sales\Model\Order\Creditmemo */ public function getCreditmemo() { return $this->_coreRegistry->registry('current_creditmemo'); } /** * Get header text * * @return string */ public function getHeaderText() { if ($this->getCreditmemo()->getInvoice()) { $header = __('New Credit Memo for Invoice #%1', $this->getCreditmemo()->getInvoice()->getIncrementId()); } else { $header = __('New Credit Memo for Order #%1', $this->getCreditmemo()->getOrder()->getRealOrderId()); } return $header; } /** * Get back url * * @return string */ public function getBackUrl() { return $this->getUrl( 'sales/order/view', ['order_id' => $this->getCreditmemo() ? $this->getCreditmemo()->getOrderId() : null] ); } }