12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Adminhtml\Order\Create\Sidebar;
- /**
- * Adminhtml sales order create sidebar compared block
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @since 100.0.2
- */
- class Compared extends \Magento\Sales\Block\Adminhtml\Order\Create\Sidebar\AbstractSidebar
- {
- /**
- * Constructor
- *
- * @return void
- */
- protected function _construct()
- {
- parent::_construct();
- $this->setId('sales_order_create_sidebar_compared');
- $this->setDataId('compared');
- }
- /**
- * Get header text
- *
- * @return \Magento\Framework\Phrase
- */
- public function getHeaderText()
- {
- return __('Products in Comparison List');
- }
- /**
- * Retrieve item collection
- *
- * @return mixed
- */
- public function getItemCollection()
- {
- $collection = $this->getData('item_collection');
- if ($collection === null) {
- if ($collection = $this->getCreateOrderModel()->getCustomerCompareList()) {
- $collection = $collection->getItemCollection()->useProductItem(
- true
- )->setStoreId(
- $this->getQuote()->getStoreId()
- )->addStoreFilter(
- $this->getQuote()->getStoreId()
- )->setCustomerId(
- $this->getCustomerId()
- )->addAttributeToSelect(
- 'name'
- )->addAttributeToSelect(
- 'price'
- )->addAttributeToSelect(
- 'image'
- )->addAttributeToSelect(
- 'status'
- )->load();
- }
- $this->setData('item_collection', $collection);
- }
- return $collection;
- }
- /**
- * Get item id
- *
- * @param \Magento\Framework\DataObject $item
- * @return int
- */
- public function getItemId($item)
- {
- return $item->getCatalogCompareItemId();
- }
- }
|