![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-sales/Block/Adminhtml/Order/Create/Sidebar/ |
<?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 wishlist block * * @api * @author Magento Core Team <[email protected]> * @since 100.0.2 */ class Wishlist extends \Magento\Sales\Block\Adminhtml\Order\Create\Sidebar\AbstractSidebar { /** * Storage action on selected item * * @var string */ protected $_sidebarStorageAction = 'add_wishlist_item'; /** * Constructor * * @return void */ protected function _construct() { parent::_construct(); $this->setId('sales_order_create_sidebar_wishlist'); $this->setDataId('wishlist'); } /** * Get header text * * @return \Magento\Framework\Phrase */ public function getHeaderText() { return __('Wish List'); } /** * Retrieve item collection * * @return mixed */ public function getItemCollection() { $collection = $this->getData('item_collection'); if ($collection === null) { $collection = $this->getCreateOrderModel()->getCustomerWishlist(true); if ($collection) { $collection = $collection->getItemCollection()->load(); $transferredItems = $this->getCreateOrderModel()->getSession()->getTransferredItems() ?? []; $transferredItems = $transferredItems[$this->getDataId()] ?? []; if (!empty($transferredItems)) { foreach ($collection as $key => $item) { if (in_array($item->getId(), $transferredItems)) { $collection->removeItemByKey($key); } } } } $this->setData('item_collection', $collection); } return $collection; } /** * Retrieve all items * * @return array */ public function getItems() { $items = parent::getItems(); foreach ($items as $item) { $product = $item->getProduct(); $item->setName($product->getName()); $item->setPrice($product->getFinalPrice(1)); $item->setTypeId($product->getTypeId()); } return $items; } /** * Retrieve product identifier linked with item * * @param \Magento\Wishlist\Model\Item $item * @return int */ public function getProductId($item) { return $item->getProduct()->getId(); } /** * Retrieve identifier of block item * * @param \Magento\Framework\DataObject $item * @return int */ public function getIdentifierId($item) { return $item->getId(); } /** * Retrieve possibility to display quantity column in grid of wishlist block * * @return true */ public function canDisplayItemQty() { return true; } }