![]() 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/Ui/Component/Listing/Column/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Sales\Ui\Component\Listing\Column; use Magento\Framework\View\Element\UiComponent\ContextInterface; use Magento\Framework\View\Element\UiComponentFactory; use Magento\Ui\Component\Listing\Columns\Column; use Magento\Framework\Pricing\PriceCurrencyInterface; use Magento\Directory\Model\Currency; /** * Class Price */ class PurchasedPrice extends Column { /** * @var PriceCurrencyInterface */ protected $priceFormatter; /** * @var Currency */ private $currency; /** * Constructor * * @param ContextInterface $context * @param UiComponentFactory $uiComponentFactory * @param PriceCurrencyInterface $priceFormatter * @param array $components * @param array $data * @param Currency $currency */ public function __construct( ContextInterface $context, UiComponentFactory $uiComponentFactory, PriceCurrencyInterface $priceFormatter, array $components = [], array $data = [], Currency $currency = null ) { $this->priceFormatter = $priceFormatter; $this->currency = $currency ?: \Magento\Framework\App\ObjectManager::getInstance() ->create(Currency::class); parent::__construct($context, $uiComponentFactory, $components, $data); } /** * Prepare Data Source * * @param array $dataSource * @return array */ public function prepareDataSource(array $dataSource) { if (isset($dataSource['data']['items'])) { foreach ($dataSource['data']['items'] as & $item) { $currencyCode = isset($item['order_currency_code']) ? $item['order_currency_code'] : null; $purchaseCurrency = $this->currency->load($currencyCode); $item[$this->getData('name')] = $purchaseCurrency ->format($item[$this->getData('name')], [], false); } } return $dataSource; } }