Install the Product + Marketplace Merchant Commission feature
Edit on GitHubThis document describes how to install the Product + Marketplace Merchant Commission feature.
Prerequisites
Install the required features:
NAME | VERSION | INSTALLATION GUIDE |
---|---|---|
Marketplace Merchant Commission | 202410.0 | Install the Marketplace Merchant Commission feature |
Product | 202410.0 | Install the Product feature |
1) Install the required modules
composer require spryker/product-merchant-commission-connector:"^1.0.0" --update-with-dependencies
Verification
Make sure the following modules have been installed:
MODULE | EXPECTED DIRECTORY |
---|---|
ProductMerchantCommissionConnector | vendor/spryker/product-merchant-commission-connector |
2) Set up behavior
Set up the following behaviors:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
ProductAttributeMerchantCommissionItemCollectorRulePlugin | Collects items with attributes that match the provided clause. | Spryker\Zed\ProductMerchantCommissionConnector\Communication\Plugin\MerchantCommission |
src/Pyz/Zed/MerchantCommission/MerchantCommissionDependencyProvider.php
<?php
namespace Pyz\Zed\MerchantCommission;
use Spryker\Zed\MerchantCommission\MerchantCommissionDependencyProvider as SprykerMerchantCommissionDependencyProvider;
use Spryker\Zed\ProductMerchantCommissionConnector\Communication\Plugin\MerchantCommission\ProductAttributeMerchantCommissionItemCollectorRulePlugin;
class MerchantCommissionDependencyProvider extends SprykerMerchantCommissionDependencyProvider
{
/**
* @return list<\Spryker\Zed\RuleEngineExtension\Communication\Dependency\Plugin\CollectorRulePluginInterface>
*/
protected function getRuleEngineCollectorRulePlugins(): array
{
return [
new ProductAttributeMerchantCommissionItemCollectorRulePlugin(),
];
}
}
Verification
- Import a new merchant commission via data import or GUI import with an item condition defined as a query string with an attribute field. For example,
attribute.brand IS IN 'samsung;sony'
. - Add a merchant product with the corresponding product attribute to the cart and place the order. Make sure the following applies:
- The
commission-calculate
OMS event has been triggered. - In the
spy_sales_merchant_commission
database table, a record with the merchant commission applied to corresponding sales order item has been added.
Thank you!
For submitting the form