Skip to content

Latest commit

 

History

History
177 lines (120 loc) · 6.82 KB

multi_source_inventory.rst

File metadata and controls

177 lines (120 loc) · 6.82 KB
.. rst-class:: plus-doc

Multi-Source Inventory

Sylius Plus has a much more complex approach to inventory management than the open source version. Unlike the open source version, that allows to specify one stock amount value for each variant, the Sylius Plus Multi-Source Inventory gives you a possibility to create several Inventory Sources and specify different stock amounts of variants for different Inventory Sources.

Admin can create multiple Inventory Sources (IS). For each IS they can choose Channels it will be available for. Let's say you have 2 channels - "DACH" and "France", and you have three magazines in Paris, in Berlin, and in Vienna, so you'd probably want the "France" channel to be fulfilled from the Parisian magazine only.

The experience for the Customer is seamless, they are not aware of multiple magazines, their orders are fulfilled just like it was. As an Administrator, you will additionally see which Inventory Source was chosen for the Order's shipment to be fulfilled from. The system is prepared to be supporting shipments splitting on one order and fulfilling from multiple magazines in the near future.

Inventory Source

Inventory Source is the place from which a shipment of an order will be shipped from, it can be understood as a magazine, a fulfillment centre, physical store etc.

Administrators can add, modify and remove Inventory Sources in the admin panel.

../../_images/sylius_plus/inventory_sources_index.png

Each IS has its own inventory management page, where you can manage stock levels of all items available int his inventory.

../../_images/sylius_plus/inventory_source_stock_management.png

In order to make a product tracked within an Inventory Source, you have to go to it's ProductVariant's Inventory tab on the edit page.

../../_images/sylius_plus/product_variant_stock_management.png

After an Order with tracked products is placed you will see from which IS its Shipment should be shipped.

../../_images/sylius_plus/inventory_source_shipment.png

InventorySourceStock on ProductVariant

Each simple Product and each Product Variant of a configurable Product can have stock in the Inventory Sources available for channels the product is available in. You can specify stocks on products and then manage them also in the Inventory section, where you will see the inventory of each IS separately.

inventorySourceStock is a property that behaves exactly like the stockAmount field you know from open source single-source inventory, so it has both onHand and onHold values that are modified when Orders are placed and fulfilled in your shop.

The tracking of a Product can be disabled.

Inventory Source resolving

The current implementation provides one main resolver, that can use multiple inventory sources filters.

There are two filters provided by default:

  • Sufficient, with priority = 0, that provides all inventory sources able to handle all ordered products;
  • EnabledChannel, with priority = 8, that provides inventory sources enabled for the current channel;

Filters always return an array of inventory sources, however resolver picks the first of them or throws an UnresolvedInventorySource exception if no inventory source can be resolved.

It's possible to add more inventory sources filter, with higher or lower priority. Such a service must implement SyliusPlusInventoryApplicationFilterInventorySourcesFilterInterface and be registered with sylius_plus.inventory.inventory_sources_filter tag, with priority attribute set.

Note

How to create a custom Inventory Sources Filter? Read :doc:`this Cookbook </cookbook/index>`.

Resolving InventorySourceStock for ordered products

Warning

Standard Sylius distribution is releasing a stock inventory when the whole order is paid, while in Plus version, it has been switched to be released after shipment has been shipped.

Inventory API

The synchronization of Inventory Source stock levels can be done via API: you can send an API request to Sylius with inventory stocks in a chosen IS for chosen products and get them updated. This allows for straightforward integration with your ERP & WMS systems.

Sylius Plus provides a route that allows changing inventory source stock with an API call:

POST /api/v1/inventory-sources/{code}/update-stocks

The code is a code of inventory source on which stock is to be updated. Content of the request should contain an array of updated stocks, with the product variant code and target on hand value.

Example:

{
    "stocks": [
        {
            "productVariantCode": "LASER_SWORD",
            "onHand": 20
        },
        {
            "productVariantCode": "LIGHT_SABRE",
            "onHand": 15
        }
    ]
}

Warning

To use the Sylius Plus API, you need to be authorized as an administrator with the ROLE_API_ACCESS role. Check out the :doc:`API Authorization chapter </api/admin_api/authorization>`.

How does Multi-Source Inventory work on examples?

Tip

You can see all use cases we have designed in Sylius Plus by browsing the Behat scenarios for inventory in the vendor package after installing Sylius Plus.

Multi-source inventory fixtures

Inventory Sources fixtures

This fixture creates Inventory Sources without products (empty) enabled in chosen channels:

hamburg_warehouse:
   code: 'hamburg_warehouse'
   name: 'Hamburg Warehouse'
   channels:
      - 'HOME_WEB'
      - 'FASHION_WEB'

Inventory Source Stocks fixtures

This fixture adds inventory source stock to chosen Inventory Source, you can choose which taxons and channels you want to include in each inventory source.

When declaring both options, a union of sets will be resolved.

stocks_in_frankfurt_warehouse:
    inventory_source: 'frankfurt_warehouse'
    products_from:
        taxons_codes:
            - 'caps'
            - 'dresses'
        channels_codes:
            - 'HOME_WEB'
            - 'FASHION_WEB'

Learn more

../../_images/sylius_plus/banner.png