brille24/tierprice-plugin

This package is abandoned and no longer maintained. The author suggests using the brille24/sylius-tierprice-plugin package instead.

A plugin that allows to add tierprices to Sylius


README

68747470733a2f2f73796c6975732e636f6d2f6173736574732f62616467652d617070726f7665642d62792d73796c6975732e706e67

Sylius Tier Price Plugin

Build Status

This plugin adds tier pricing to Sylius one product has different prices based on the quantity.

Installation

  • Install the bundle via composer composer require brille24/sylius-tierprice-plugin
  • Register the bundle in your bundles.php:
return [
    //...

    Brille24\SyliusTierPricePlugin\Brille24SyliusTierPricePlugin::class => ['all' => true],
];
  • Add the config.yml to your local config/config.yml
imports:
    ...
    - { resource: '@Brille24SyliusTierPricePlugin/Resources/config/config.yml'}
  • For API functionality add the bundle's routing.yml to the local app/config/routing.yml
...
brille24_tierprice_bundle:
    resource: '@Brille24SyliusTierPricePlugin/Resources/config/routing.yml'
  • Go into your ProductVariant class and add the following trait and add one method call to the constructor
class ProductVariant
{
    use \Brille24\SyliusTierPricePlugin\Traits\TierpricableTrait;

    public function __construct() {
        // Your contructor here

        $this->initTierPriceableTrait() // "Constructor" of the trait
    }
}
  • Finally update the database, install the assets and update the translations:
bin/console doctrine:schema:update --force
bin/console assets:install
bin/console translation:update <locale> --force

Integration

This bundle uses XML mappings, if you are using attributes for mappings these classes don't work.

  • This bundle decorates the sylius.calculator.product_variant_price service. If you wish to change that, you could register a compiler pass.
  • This bundle decorates the sylius.order_processing.order_prices_recalculator service. If you wish to use your own order processor or change its priority, you could register a compiler pass.

Usage

First of all you have to set up a product with as many variants as you want. Then in each of these variants you can set the tier pricing based on the channels. The table automatically sorts itself to provide a better overview for all different tiers, you configured.

Backend.png

In the frontend the user will see a nice looking table right next to the "add to cart" button that shows the discount for the different tiers like so:

Front-End.png

Creating data

You can easily create the tier prices with fixtures like that.

sylius_fixtures:
    suites:
        my_suite:
            fixtures:
                tier_prices:
                    options:
                        custom:
                            - product_variant: "20125148-54ca-3f05-875f-5524f95aa85b"
                              channel: US_WEB
                              quantity: 10
                              price: 5

For this the products need to be created first and the product variant must also exist.

Extending

If you want to extend the tierprices please be aware that this plugin is using XML for configuration. This might collide with projects that use Annotations.