123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Backend\Block\Dashboard;
- /**
- * Adminhtml dashboard sales statistics bar
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Sales extends \Magento\Backend\Block\Dashboard\Bar
- {
- /**
- * @var string
- */
- protected $_template = 'Magento_Backend::dashboard/salebar.phtml';
- /**
- * @var \Magento\Framework\Module\Manager
- */
- protected $_moduleManager;
- /**
- * @param \Magento\Backend\Block\Template\Context $context
- * @param \Magento\Reports\Model\ResourceModel\Order\CollectionFactory $collectionFactory
- * @param \Magento\Framework\Module\Manager $moduleManager
- * @param array $data
- */
- public function __construct(
- \Magento\Backend\Block\Template\Context $context,
- \Magento\Reports\Model\ResourceModel\Order\CollectionFactory $collectionFactory,
- \Magento\Framework\Module\Manager $moduleManager,
- array $data = []
- ) {
- $this->_moduleManager = $moduleManager;
- parent::__construct($context, $collectionFactory, $data);
- }
- /**
- * @return $this|void
- */
- protected function _prepareLayout()
- {
- if (!$this->_moduleManager->isEnabled('Magento_Reports')) {
- return $this;
- }
- $isFilter = $this->getRequest()->getParam(
- 'store'
- ) || $this->getRequest()->getParam(
- 'website'
- ) || $this->getRequest()->getParam(
- 'group'
- );
- $collection = $this->_collectionFactory->create()->calculateSales($isFilter);
- if ($this->getRequest()->getParam('store')) {
- $collection->addFieldToFilter('store_id', $this->getRequest()->getParam('store'));
- } elseif ($this->getRequest()->getParam('website')) {
- $storeIds = $this->_storeManager->getWebsite($this->getRequest()->getParam('website'))->getStoreIds();
- $collection->addFieldToFilter('store_id', ['in' => $storeIds]);
- } elseif ($this->getRequest()->getParam('group')) {
- $storeIds = $this->_storeManager->getGroup($this->getRequest()->getParam('group'))->getStoreIds();
- $collection->addFieldToFilter('store_id', ['in' => $storeIds]);
- }
- $collection->load();
- $sales = $collection->getFirstItem();
- $this->addTotal(__('Lifetime Sales'), $sales->getLifetime());
- $this->addTotal(__('Average Order'), $sales->getAverage());
- }
- }
|