plumtreesystems/sylius-order-batch

A plugin that lets you customize how you filter your orders and save them into batches.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:sylius-plugin

pkg:composer/plumtreesystems/sylius-order-batch


README

A plugin that lets you customize how you filter your orders and save them into batches.

Installation

Install the package with this command: composer require plumtreesystems/sylius-order-batch

Add plugin dependencies to your bundles.php file:

return [
    PTS\SyliusOrderBatchPlugin\PTSSyliusOrderBatchPlugin::class => ['all' => true],
];

Import the bundle's configuration to your _sylius.yaml file

imports:
    - { resource: "@PTSSyliusOrderBatchPlugin/Resources/config/config.yml" }

Import the bundle's routes to your routes.yaml file

pts_sylius_order_batch_plugin:
  resource: "@PTSSyliusOrderBatchPlugin/Resources/config/routing.yml"

Execute migrations php bin/console doctrine:migrations:migrate

Copy the bundle's templates from src/Resources/templates to your project templates/ folder

Install the assets of the bundle by executing this command: php bin/console assets:install public

Customize

If you'd like to add custom actions or custom types your batches, follow instructions in the following links

Custom batch type / Custom batch action