Install the Product Bundles + Order Management feature
Edit on GitHubInstall feature core
Prerequisites
Install the required features:
| NAME | VERSION |
|---|---|
| Product Bundles | 202507.0 |
| Order Management | 202507.0 |
| Spryker Core | 202507.0 |
1) Set up behavior
| PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
|---|---|---|---|
| ProductBundleOrderItemExpanderPlugin | Expands order items with product bundles. | None | Spryker\Zed\ProductBundle\Communication\Plugin\Sales |
| ProductBundleOptionItemExpanderPlugin | Expands order items with product options. Copies unique product options from related bundle items to bundle. | None | Spryker\Zed\ProductBundle\Communication\Plugin\Sales |
src/Pyz/Zed/Sales/SalesDependencyProvider.php
<?php
namespace Pyz\Zed\Sales;
use Spryker\Zed\ProductBundle\Communication\Plugin\Sales\ProductBundleOptionItemExpanderPlugin;
use Spryker\Zed\ProductBundle\Communication\Plugin\Sales\ProductBundleOrderItemExpanderPlugin;
use Spryker\Zed\Sales\SalesDependencyProvider as SprykerSalesDependencyProvider;
class SalesDependencyProvider extends SprykerSalesDependencyProvider
{
/**
* @return \Spryker\Zed\SalesExtension\Dependency\Plugin\OrderItemExpanderPluginInterface[]
*/
protected function getOrderItemExpanderPlugins(): array
{
return [
new ProductBundleOrderItemExpanderPlugin(),
new ProductBundleOptionItemExpanderPlugin(),
];
}
}
Verification
Make sure that every order item from SalesFacade::getOrderItems() results contains product concrete/abstract IDs data.
Thank you!
For submitting the form