![]() 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-bundle/Model/Plugin/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Bundle\Model\Plugin; use Magento\Quote\Model\Quote\Item\ToOrderItem; use Magento\Sales\Api\Data\OrderItemInterface; use Magento\Quote\Model\Quote\Item\AbstractItem; /** * Plugin for Magento\Quote\Model\Quote\Item\ToOrderItem */ class QuoteItem { /** * Add bundle attributes to order data * * @param ToOrderItem $subject * @param OrderItemInterface $orderItem * @param AbstractItem $item * @param array $data * @return OrderItemInterface * * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function afterConvert(ToOrderItem $subject, OrderItemInterface $orderItem, AbstractItem $item, $data = []) { if ($attributes = $item->getProduct()->getCustomOption('bundle_selection_attributes')) { $productOptions = $orderItem->getProductOptions(); $productOptions['bundle_selection_attributes'] = $attributes->getValue(); $orderItem->setProductOptions($productOptions); } return $orderItem; } }