123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Customer\Block\Adminhtml\Edit\Tab\View;
- use Magento\Customer\Controller\RegistryConstants;
- use Magento\Directory\Model\Currency;
- /**
- * Adminhtml customer cart items grid block
- *
- * @SuppressWarnings(PHPMD.LongVariable)
- *
- * @api
- * @since 100.0.2
- */
- class Cart extends \Magento\Backend\Block\Widget\Grid\Extended
- {
- /**
- * Core registry
- *
- * @var \Magento\Framework\Registry
- */
- protected $_coreRegistry = null;
- /**
- * @var \Magento\Framework\Data\CollectionFactory
- */
- protected $_dataCollectionFactory;
- /**
- * @var \Magento\Quote\Api\CartRepositoryInterface
- */
- protected $quoteRepository;
- /**
- * @var \Magento\Quote\Model\Quote
- */
- protected $quote = null;
- /**
- * @var \Magento\Quote\Model\QuoteFactory
- */
- protected $quoteFactory;
- /**
- * @param \Magento\Backend\Block\Template\Context $context
- * @param \Magento\Backend\Helper\Data $backendHelper
- * @param \Magento\Quote\Api\CartRepositoryInterface $quoteRepository
- * @param \Magento\Framework\Data\CollectionFactory $dataCollectionFactory
- * @param \Magento\Framework\Registry $coreRegistry
- * @param \Magento\Quote\Model\QuoteFactory $quoteFactory
- * @param array $data
- */
- public function __construct(
- \Magento\Backend\Block\Template\Context $context,
- \Magento\Backend\Helper\Data $backendHelper,
- \Magento\Quote\Api\CartRepositoryInterface $quoteRepository,
- \Magento\Framework\Data\CollectionFactory $dataCollectionFactory,
- \Magento\Framework\Registry $coreRegistry,
- \Magento\Quote\Model\QuoteFactory $quoteFactory,
- array $data = []
- ) {
- $this->_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;
- }
- }
|