| Current Path : /home/rtorresani/www/vendor/magento/module-backend/Block/Dashboard/Tab/Products/ |
| Current File : //home/rtorresani/www/vendor/magento/module-backend/Block/Dashboard/Tab/Products/Ordered.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Block\Dashboard\Tab\Products;
/**
* Adminhtml dashboard most ordered products grid
*
* @author Magento Core Team <core@magentocommerce.com>
* @SuppressWarnings(PHPMD.DepthOfInheritance)
*/
class Ordered extends \Magento\Backend\Block\Dashboard\Grid
{
/**
* @var \Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory
*/
protected $_collectionFactory;
/**
* @var \Magento\Framework\Module\Manager
*/
protected $_moduleManager;
/**
* @param \Magento\Backend\Block\Template\Context $context
* @param \Magento\Backend\Helper\Data $backendHelper
* @param \Magento\Framework\Module\Manager $moduleManager
* @param \Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory
* @param array $data
*/
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Backend\Helper\Data $backendHelper,
\Magento\Framework\Module\Manager $moduleManager,
\Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory,
array $data = []
) {
$this->_collectionFactory = $collectionFactory;
$this->_moduleManager = $moduleManager;
parent::__construct($context, $backendHelper, $data);
}
/**
* Construct.
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('productsOrderedGrid');
}
/**
* @inheritdoc
*/
protected function _prepareCollection()
{
if (!$this->_moduleManager->isEnabled('Magento_Sales')) {
return $this;
}
if ($this->getParam('website')) {
$storeIds = $this->_storeManager->getWebsite($this->getParam('website'))->getStoreIds();
$storeId = array_pop($storeIds);
} elseif ($this->getParam('group')) {
$storeIds = $this->_storeManager->getGroup($this->getParam('group'))->getStoreIds();
$storeId = array_pop($storeIds);
} else {
$storeId = (int)$this->getParam('store');
}
$collection = $this->_collectionFactory->create()->setModel(
\Magento\Catalog\Model\Product::class
)->addStoreFilter(
$storeId
);
$this->setCollection($collection);
return parent::_prepareCollection();
}
/**
* @inheritdoc
*/
protected function _prepareColumns()
{
$this->addColumn(
'name',
[
'header' => __('Product'),
'sortable' => false,
'index' => 'product_name',
'header_css_class' => 'col-product',
'column_css_class' => 'col-product'
]
);
$this->addColumn(
'price',
[
'header' => __('Price'),
'type' => 'currency',
'currency_code' => (string)$this->_storeManager->getStore(
(int)$this->getParam('store')
)->getBaseCurrencyCode(),
'sortable' => false,
'index' => 'product_price'
]
);
$this->addColumn(
'ordered_qty',
[
'header' => __('Quantity'),
'sortable' => false,
'index' => 'qty_ordered',
'type' => 'number',
'header_css_class' => 'col-qty',
'column_css_class' => 'col-qty'
]
);
$this->setFilterVisibility(false);
$this->setPagerVisibility(false);
return parent::_prepareColumns();
}
/**
* Returns row url to show in admin dashboard
* $row is bestseller row wrapped in Product model
*
* @param \Magento\Catalog\Model\Product $row
* @return string
*/
public function getRowUrl($row)
{
// getId() would return id of bestseller row, and product id we get by getProductId()
$productId = $row->getProductId();
// No url is possible for non-existing products
if (!$productId) {
return '';
}
$params = ['id' => $productId];
if ($this->getRequest()->getParam('store')) {
$params['store'] = $this->getRequest()->getParam('store');
}
return $this->getUrl('catalog/product/edit', $params);
}
}