Install the Product Options + Order Management feature

Edit on GitHub

Install feature core

Prerequisites

Install the required features:

NAME VERSION
Product Options 202212.0
Order Management 202212.0
Spryker Core 202212.0

1) Set up behavior

PLUGIN SPECIFICATION PREREQUISITES NAMESPACE
ProductOptionsOrderItemExpanderPlugin Expands order items with product options. None Spryker\Zed\ProductOption\Communication\Plugin\Sales

src/Pyz/Zed/Sales/SalesDependencyProvider.php

<?php

namespace Pyz\Zed\Sales;

use Spryker\Zed\ProductOption\Communication\Plugin\Sales\ProductOptionsOrderItemExpanderPlugin;
use Spryker\Zed\Sales\SalesDependencyProvider as SprykerSalesDependencyProvider;

class SalesDependencyProvider extends SprykerSalesDependencyProvider
{
    /**
     * @return \Spryker\Zed\SalesExtension\Dependency\Plugin\OrderItemExpanderPluginInterface[]
     */
    protected function getOrderItemExpanderPlugins(): array
    {
        return [
            new ProductOptionsOrderItemExpanderPlugin(),
        ];
    }
}
Verification

Make sure that results from SalesFacade::getOrderItems() method call contain product options data per each item which has product options.