_dataCollectionFactory = $dataCollectionFactory; $this->_coreRegistry = $coreRegistry; $this->quoteRepository = $quoteRepository; $this->quoteFactory = $quoteFactory; parent::__construct($context, $backendHelper, $data); } /** * @inheritdoc */ protected function _construct() { parent::_construct(); $this->setId('customer_view_cart_grid'); $this->setDefaultSort('added_at', 'desc'); $this->setSortable(false); $this->setPagerVisibility(false); $this->setFilterVisibility(false); $this->setEmptyText(__('There are no items in customer\'s shopping cart.')); } /** * Prepare the cart collection. * * @return $this */ protected function _prepareCollection() { $quote = $this->getQuote(); if ($quote) { $collection = $quote->getItemsCollection(true); } else { $collection = $this->_dataCollectionFactory->create(); } $collection->addFieldToFilter('parent_item_id', ['null' => true]); $this->setCollection($collection); return parent::_prepareCollection(); } /** * @inheritdoc */ protected function _prepareColumns() { $this->addColumn('product_id', ['header' => __('ID'), 'index' => 'product_id', 'width' => '100px']); $this->addColumn('name', ['header' => __('Product'), 'index' => 'name']); $this->addColumn('sku', ['header' => __('SKU'), 'index' => 'sku', 'width' => '100px']); $this->addColumn('qty', ['header' => __('Qty'), 'index' => 'qty', 'type' => 'number', 'width' => '60px']); $this->addColumn( 'price', [ 'header' => __('Price'), 'index' => 'price', 'type' => 'currency', 'currency_code' => $this->getQuote()->getQuoteCurrencyCode(), 'rate' => $this->getQuote()->getBaseToQuoteRate(), ] ); $this->addColumn( 'total', [ 'header' => __('Total'), 'index' => 'row_total', 'type' => 'currency', 'currency_code' => $this->getQuote()->getQuoteCurrencyCode(), 'rate' => 1, ] ); return parent::_prepareColumns(); } /** * @inheritdoc */ public function getRowUrl($row) { return $this->getUrl('catalog/product/edit', ['id' => $row->getProductId()]); } /** * @inheritdoc */ public function getHeadersVisibility() { return $this->getCollection()->getSize() >= 0; } /** * Get quote * * @return \Magento\Quote\Model\Quote */ protected function getQuote() { if (null == $this->quote) { $storeIds = $this->_storeManager->getWebsite($this->getWebsiteId())->getStoreIds(); $this->quote = $this->quoteFactory->create()->setSharedStoreIds($storeIds); $currentCustomerId = $this->_coreRegistry->registry(RegistryConstants::CURRENT_CUSTOMER_ID); if (!empty($currentCustomerId)) { try { $this->quote = $this->quoteRepository->getForCustomer($currentCustomerId, $storeIds); } catch (\Magento\Framework\Exception\NoSuchEntityException $e) { } } } return $this->quote; } }