Entity Lifecycle and Workflow
- 1 General overview
- 2 Principle
- 2.1 Interface and tools
- 2.1.1 Interface interactions
- 2.1.2 Diagram details
- 2.1.2.1 Starting state
- 2.1.2.2 Transition
- 2.2 Entities
- 2.2.1 Order workflow
- 2.2.1.1 Order
- 2.2.1.2 Line Item Group
- 2.2.1.3 Parcel
- 2.2.1.4 Bundle
- 2.2.2 Return parcel workflow
- 2.2.2.1 Return Parcel
- 2.2.2.2 Return Line Item Group
- 2.2.3 Store and Warehouse workflow
- 2.2.3.1 Endpoint Order
- 2.2.3.2 Piece Group
- 2.2.3.3 Containers
- 2.2.3.4 Operators
- 2.2.1 Order workflow
- 2.3 Condition
- 2.4 Action
- 2.5 Operation of the workflow
- 2.5.1 Trigger a transition
- 2.5.2 Process of the transition
- 2.5.2.1 Operation : A transition is triggered
- 2.5.2.2 Technical Specificity :
- 2.5.2.2.1 Cascading principle
- 2.1 Interface and tools
- 3 How to configure
General overview
The Order Management System is the core service that handle multiple entities linked to orders in OneStock : Orders, articles, parcels.
To handle the different entities, API routes are detailed on the documentation for each action on elements of the order (Creation, modification, retreivement).
Once an entity is created in the system, it follows a path that is configured in the Order Management Center called “Order Life Cycle” or “Workflow”. This path allows to define the different possible states for an order, an article, or a parcel.
Depending on interconnected property, status, or attribute, the entity will transition from a state to another, and a list of linked action will be activated.
Transitions are triggered automatically or manually through app or API interactions.
The purpose of the Workflow is to :
Define states for an entity
Allow transitions between controlled states
Apply actions
This workflow is custom built to replicate the fulfillment management of an order, an article, or a parcel. Thus it is configured to reflect the unique business capabilities of any entity for a retailer.
Match the existing business capabilities with the configured Workflow
Define what actions and changes are technically allowed through via the configuration.
Principle
There is 3 different categories of workflows in OneStock :
Order workflow
Return parcel workflow
Store and Warehouse workflows
Order workflow is dedicated to treating orders, articles, parcel and bundles in OneStock. This workflow allows to integrate, manage stocks, orchestration and delivery to an order. It is a mandatory workflow to use OneStock as an OMS.
Return parcel workflow is specifically dedicated to create and handle return parcels. If this workflow is missing, no returns will be possible. (More informations here).
Store and Warehouse workflows shaped to handle entity flows for the Store App. They are required to make the Store App usable for a stock location, and critical to process orders through the app.
Interface and tools
All workflows have the same interface and works using same mechanism for consultations and modifications.
In the following, we detail what are the user capabilities through the interface, and what are the interpretation of visual information for technical purpose.
Interface interactions
The base mode of the order lifecycle is the view mode to consult all existing workflows.
Create a new view to filter graphs, and save.
View allows to filter and save a workflow display
Use action filters to quickly spot the transitions that contains a targeted action you want to identify.
Watch all the conditions and action by clicking on the transition.
To modify your workflow, create a draft and enter the draft mode.
To add a state in a graph, use the state dropdown, or right clic on a free space.
To add a condition or an action, click on the targeted transition (or starting state), and use the dedicated button.
For advanced users, a code mode is available for display and modification of workflow actions and conditions.
The code mode is accessible on global, entity workflow view (by clicking on the three dots option), or in the transition detail (by using the right tab).
To activate the modified workflow once modifications are done, publish the draft by clicking on the dedicated button. When a draft is published, all workflows are published at the same time.
If necessary, it is possible to cancel all the modifications by deleting the draft.
If deleted, a draft cannot be retreived
Diagram details
Starting state
When defining an entity, a starting state needs to be defined. Only one state can be tagged as a start state. It is recognizable by its dotted border.
This first state is the only one having the possibility to execute actions after its creation.
Transition
Transitions are links having a starting and a arrival state. It has a defined unique direction.
Transitions can be either Automatic or Manual. Automatic transitions are dotted arrows, while manual transition are plain arrows.
Pending > Paid : Manual transition
Automatic transitions are triggered by a update_{entity}_state
action without information on the target state. On the other hand, Manual transitions are triggered by a update_{entity}_state
action with the target state, or by an API update of the entity.
Entities
Order workflow
Order
Orders are created through API or through the store app. Once an order is posted by the system, the entity is created and the dedicated action are launched.
Line Item Group
Line item groups are filled in within the POST /order details. They are created at the same time than the order. Dedicated actions are simultaneously launched.
Parcel
Parcels are either created during the workflow process or using API through integration layers. Actions are then processed at the moment of the creation, through delayed action or at the moment of the POST /parcel .
Bundle
Bundles are completely automated. The entity is created when the item ID corresponding to the bundle is detected, at the moment of the Line Item Group creation.
Return parcel workflow
Return Parcel
Return parcels are created through API, through the store app or using the dedicated extension. Once a return is posted by the system, the entity is created and the linked action are launched.
Return Line Item Group
Return line item groups are filled in within the POST /return parcel details. They are created at the same time than the return parcel and actions are simultaneously launched.
Store and Warehouse workflow
Every entity of the Store and Warehouse workflow are created by the partial order preparation system (Store and Warehouse workflows). Those entities are mandatory to run the Store app.
Endpoint Order
Representing a part of the order. An endpoint order is the entity similar to orders, but linked to a stock location. It is created as soon as one line item group of the order is claimed.
Piece Group
Alike a line item group, a piece group represents an item that needs to be prepared by a stock location. In the workflow, the piece group is created when a line item group is claimed by a stock location.
Containers
Containers are entities representing holding entities. Similar to a parcel, the embed other piece group (thus articles) or other containers depending on their nature.
Generally, a container are used to define the mean used to handle an article, such as Bag, Box, Trolley, etc.
Operators
Operators are workflow entities used to represent users interacting with containers. Though the workflow, operators are taking actions on other entities.
Condition
Conditions can be applied either for a transition or an action.
For a transition, a condition allows or blocks a change of state.
It is highly recommended to use conditions on automatic transitions. When multiple transitions are possible if an automatic transition is triggered, the OMS will raise an error.
For an action, a condition is used to define if the action is activated during the sequence.
Action
Actions can affect different entities or fields of the OMS. Some actions are mandatory to run OneStock services properly.
Eg : Reservation, Stock update, Dynamic tag, etc…
Actions are run in the sequence they are configured.
Each action require different parameters. Our interface helps the user identify the mandatory fields for an action to run.
There are multiple type of action possible :
status:Transition Triggers a transition for an entity
status:Enrichment Add details in an entity
status:Consumption Consumption of an element of a service
status:Deletion Deletion of an entity or element
status:Creation Creation of an entity or element
status:Update Modification of an element
status:Launch Start a service process
Operation of the workflow
Trigger a transition
Automatic
Automatic transitions can be triggered two ways :
Using the status:Transition action without any targeted state parameter in the workflow
Using a specific service that triggers a transition : Orchestration, Stocks, etc…
Manual
Transition can be triggered manually by 3 different ways :
Using API call to patch an entity using field from as a starting state, and to as the targeted state (Please see the API documentation)
Using the backoffice pages : Dropdowns for each entity allow the user to trigger a transition to an accessible state
Through the workflow using the status:Transition action with the targeted state parameter
Process of the transition
Operation : A transition is triggered
Conditions
Verification that the entity is matching the condition for the transitionTransition
The entity switch to the new stateAction
The configured action are then operated
Actions are processed in the same sequence they are configured
Depending on conditions, an action may not be run
In case of multiple entity trigger or multiple workflow, actions are run respecting the cascading principle (see technical specificity bellow)
Technical Specificity :
Order of the sequence of action is respected
Technically : The entity switch to the new state, then actions are done. This means conditions on actions need to be adapted to the targeted state.
Cascading principle
Actions on another entity are triggered at the moment of the “update_{entity}_state”. Then the remaining actions are run.
Action to another workflow happens AFTER every actions of the same workflow are processed.
How to configure
Config generator based Workflow.
The config generator ask you Q&A on the site needs and generates a base configuration as an output that matches the answers and allows a compatibility with most services.
As a result, the base workflow is refined depending on the questions to add dedicated states and actions.