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