CreateInventoryQuantity
Changed on:
29 Aug 2024
Overview
Create an inventory quantity based on the incoming event attributes
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:
- Product Catalogue workflow
- Inventory Catalogue workflow
- Control Group workflow
- Virtual Catalogue workflow
UI Description
Create an inventory quantity based on the incoming event attributes
Accepts
- INVENTORY_POSITION
Actions
- This rule produces a MutationAction that will create an inventory quantity.
Rule parameters
Parameter | Description |
| The type of the inventory quantity that will be created. |
Event attributes
Parameter | Description | Data Type | Required? |
| The associated inventory position ref | String | Yes |
| The quantity value of the Inventory Quantity | Integer | Yes |
| The date when the quantity is expected to be available | Date (ISO-8601 format) | No |
| The ref of the storage area where the quantity will be located | String | No |
| The condition of the quantity | String | No |
| Location of the Inventory Position | String | No |
| inventoryQuantityUpdate | [InventoryQuantity] | No |
InventoryQuantity sub-attributes
Parameter | Description | Data Type | Required? |
| The reference of the inventory quantity | String | No |
| The type of the inventory quantity | String | No |
| The quantity value of the inventory quantity | Integer | No |
| The status of the inventory quantity | String | No |
Exceptions
- This rule will throw a PropertyNotFoundException, which is a subclass of RubixException, if the type property is not provided.
- If or
`inventoryPositionRef`
values are not provided, EventAttributeNotFoundException (subclass of RubixException) will be thrown. If the`qty`
is not an integer, InvalidAttributeTypeException will be thrown.`qty`
- If the value cannot be parsed to valid date (or null), InvalidAttributeValueException(subclass of RubixException) will be thrown. If the type of the value cannot be identified, InvalidAttributeTypeException (subclass of RubixException) will be thrown
`expectedOn`
Configuration example
1{
2 "name": "[[account.id]].globalinventory.CreateInventoryQuantity",
3 "props": {
4 "type":"SALE"
5 }
6}
Language: json
Detailed Technical Description
Creates an inventory quantity based on the incoming event attributes.
If the inventory quantity reference is not provided as
`inventoryQuantity.ref`
`PRD:LOC:DEFAULT`
`PRD:LOC:DEFAULT:SALE`
Version History
v2.0.0
refers to plugin