valantic-spryker/price-product-customer-group-data-import

This module has demo data and importer for price products for customer groups.

1.0.0 2023-08-01 15:22 UTC

This package is auto-updated.

Last update: 2024-04-09 11:53:53 UTC


README

Minimum PHP Version

This module has demo data and importer for price products for customer groups.

Install package

composer req valantic-spryker/price-product-customer-group-data-import

Register plugins

src/Pyz/Zed/DataImport/DataImportDependencyProvider.php

use ValanticSpryker\Zed\PriceProductCustomerGroupDataImport\Communication\Plugin\PriceProductCustomerGroupDataImportPlugin;

...

protected function getDataImporterPlugins(): array
{
    return [
        ...
        new PriceProductCustomerGroupDataImportPlugin(),
    ];
}

src/Pyz/Zed/Console/ConsoleDependencyProvider.php

use ValanticSpryker\Zed\PriceProductCustomerGroupDataImport\PriceProductCustomerGroupDataImportConfig;

...

protected function getConsoleCommands(Container $container): array
{
    $commands = [
        ...
        new DataImportConsole(DataImportConsole::DEFAULT_NAME . ':' . PriceProductCustomerGroupDataImportConfig::IMPORT_TYPE_PRICE_PRODUCT_CUSTOMER_GROUP),
    ];
}