Changed on:
25 Aug 2024
Notifies the inventory positions of the incoming updates with event {eventName}
Plugin Name | Inventory Reference Module |
---|---|
Namespace | [[account.id]].globalinventory |
The Inventory Reference Module is the foundation for inventory related implementations. It provides reference Workflows for inventory ingestion and processing. Extensible by design, use this Module as a base to build a solution to the needs of your customers.
The Inventory Module includes the following areas:
Notifies the inventory positions of the incoming updates with event {eventName}
Parameter | Description | Notes |
eventName | The name of the event to be triggered | Required |
Parameter | Description | Data Type | Required? |
InventoryUpdates | Array of InventoryPosition records to be updated | [InventoryPosition] | No |
Parameter | Description | Data Type | Required? |
ref | ref | String | No |
type | The inventory position type | String | No |
productRef | The ref of the variant product associated to the inventory position | String | No |
locationRef | The location ref associated to the inventory position | String | No |
qty | The quantity | Integer | No |
correctedQty | corrected quantity | Integer | No |
Exceptions will be thrown if attributes in the incoming event are missing or an event name is missing in a given workflow.
1{
2 "name": "globalinventory.SplitInventoryUpdates",
3 "props": {
4 "eventName": "InventoryChanged"
5 }
6}
Language: json
This rule parses/deserialises an
`InventoryUpdates`
`InventoryPosition`
`SendEventActions`
`InventoryPosition`
`INVENTORY_CATALOGUE`
1 public class InventoryPosition {
2
3 private String ref;
4 private String productRef;
5 private String locationRef;
6 private Integer qty;
7 private Integer correctedQty;
8 private String type;
9}
Language: java
Name: InventoryPosition
Description:
[Warning: empty required content area]refers to the plugin
Copyright © 2024 Fluent Retail Pty Ltd (trading as Fluent Commerce). All rights reserved. No materials on this docs.fluentcommerce.com site may be used in any way and/or for any purpose without prior written authorisation from Fluent Commerce. Current customers and partners shall use these materials strictly in accordance with the terms and conditions of their written agreements with Fluent Commerce or its affiliates.