Overview
About this Document
Section titled “About this Document”This document gives you a highlevel overview of the order flow. It describes how an order gets created up to the point, the ordered line items reach the customer.
Concepts and Entities
Section titled “Concepts and Entities”Before the Order Flow can be introduced it is important to understand certain entities Shopgate uses to describe states and processes within the flow. These are the Order Entities and the Fulfillment Methods.
Fulfillment Methods
Section titled “Fulfillment Methods”Fulfillment methods describe certain ways to handle orders and their fulfillment. Currently Shopgate supports three major Fulfillment Methods:
- BOPIS: Buy Online Pick up In Store
- ROPIS: Reserve Online Pick up In Store
- DirectShip: This method is available in two modes:
- Handling by merchant
- Handling by Shopgate including Payment
All of these fulfillment types have different flows. For example ROPIS/BOPIS do not support shipping and ROPIS alone does not have payment included in the flow.
Order Entities
Section titled “Order Entities”Shopgate has two major entities when it comes to orders which are:
- the Sales Order (SO) and
- the Fulfillment Order (FO).
Both describe different information packages used along the order flow. While the Sales Order is the customers view, agreement and description of an order, the Fulfillment Order is derived from the Sales Order and tells the Merchant and its worker how to fulfill the order. A Sales Order can create multiple Fulfillment Orders.
The following fast food restaurant example describes how both entities work together:
- The customer orders a burger with fries (Sales Order).
- The cashier takes the order and routes a part of it (Fulfillment Order: burger) to the burger lady and another part (Fulfillment Order: fries) to the fries man.
- Both fulfill their given orders and provide burger and fries to the cashier.
- The cashier can now fulfill the customers order (Sales Order) by providing both burger and fries.

Sales Order
Section titled “Sales Order”The Sales Order is the customer agreement to buy items. It is what taxing, pricing, payment, … is handled for. The SO gets created typically by customers transitioning a cart entity into an order on checkout. Creating a Sales Order marks the start of the Shopgate order process.
The SO is also the customers view onto the order process. It gets updated over the timespan of the complete order process from creation to the complete fulfillment including pickup or delivery.
The Sales Order itself holds various kinds of information:
- Collection of line items
- Addresses associated with the order (shipping / billing)
- Price / tax information
- Payment information
- Fulfillment (general status (open, in progress, fulfilled), state of single fulfillments)
- Customer reference
- Promotions
Sales Orders have a defined lifecycle described by its states.
| State | Description |
|---|---|
| draft | Temporary state when order is created, but not yet placed. As soon as the customer enters the checkout at Shopgate, an order is created with status draft. Once the customer has finished the checkout process, the order status is updated to “open”. |
| open | Order is placed, valid and waiting to be processed. |
| inProgress | Order is being prepared (e.g. during picking/packing in progress). |
| ready | Only for pickup in store orders: All line items of the order are ready to be picked up by the customer. |
| fulfilled | Order has been fulfilled (e.g. shipment has been delivered or customer picked up the order), but payment is not yet completed. |
| completed | Order is completed, including payment (payment has been captured). |
| rejected | Order has been rejected by the merchant. |
| canceled | Order has been canceled by the customer. |
Fulfillment Order
Section titled “Fulfillment Order”Fulfillment Orders get created while processing the Sales Order. FOs are essencially groupings of line items by location and Fulfillment Method. In the Order Flow you can see three FOs:
- Location: Flagship Store FRA
Fulfillment Method: ROPIS
LineItem1 - Location: Flagship Store MUC
Fulfillment Method: DirectShip
LineItem2 - Location: Local Store BUTZ
Fulfillment Method: BOPIS
LineItem3
Each will be handled in a different location with a different fulfillment flow determined by the Fulfillment Method.
FOs contain all the necessary information a location needs to fulfill the order like:
- FO Status
- LineItems
- Shipping Address (in case of DirectShip)
- Action Dates
Also the FOs have a Lifecycle described by states:
| State | Description |
|---|---|
| requested | The Fulfillment Order was created after the creation of the Sales Order. |
| accepted | All line items have been accepted. |
| inProgress | Transition state e.g. if line items are in different states. |
| picked | All line items have been picked. |
| packed | Line items have all been packed into packages. |
| ready | Fulfillment Order is ready to be picked up. |
| hold | Fulfillment gets paused manually for later processing. |
| checkedIn | Manually set by merchant side when customer enters a location. |
| canceled | Fulfillment Order has been canceled by customer. |
| rejected | Fulfillment Order has been rejected from merchant side. |
| fulfilled | Fulfillment Order has been fulfilled. |
Fulfillment Order Line Items
Section titled “Fulfillment Order Line Items”Fulfillment Order line items are the smallest part of a FO. FO line items can be grouped into Fulfillment Order packages during the fulfillment process. Fulfillment Order packages themselves can be grouped by fulfillments.

All of those grouping entities have states that will be impicitly set during state transition of the line items. E.g. if all line items are set to fulfilled, all packages, all fulfillments and the Fulfillment Order is/are fulfilled.
Order Flow
Section titled “Order Flow”Generally the basic order flow consists of four stages. In the first stage (1) the customer creates an order in Shopgate by turning a cart into the order during checkout. This order is a Sales Order. The second stage (2) is the internal processing of the order by the Shopgate order platform. The order gets split and routed to fitting locations in the third stage (3, fulfillment) as Fulfillment Order(s). In the last stage (4) all parts of the order get deliverd or picked up.

NOTE: this is an overview for a basic highlevel order without all the subflows and details. More complex order flows are also possible.
During the flow all relevant actions can emit events that can be reacted upon. For example a notification can be send out to a customers device when an order is ready, or a webhook can be triggerd when the a Fulfillment Order reaches a location.
Order Processing
Section titled “Order Processing”After creation of a Sales Order several checks will be performed internally like
- Availability of inventory
- Reservation of inventory
- If needed: check if the selected fulfillment slot is available
- If BOPIS / DirectShip check payment information (including tax and promotions) and authorize payment
On changes of the order relevant parts will be reevaluated. For example pricing, tax, promotions or payment will be recalculated when fulfillment line items change.
After all these initial checks have been performed, the routing of the order will be processed. Routing an order means finding a location that can fulfill the order for the selected Fulfillment Method. Technically this process creates Fulfillment Orders for the Sales Order per location and Fulfillment Method.
Order Fulfillment
Section titled “Order Fulfillment”The fulfillment process is dependent of the FOs Fulfillment Method.
For all processes the line items of the FO need to be picked from the inventory. BOPIS and DirectShip differ ROPIS in terms of payment handling and shipping provider handling (label printing, actual shipping, …).
Hooking into external Order Processing and Fulfillment
Section titled “Hooking into external Order Processing and Fulfillment”It is possible to hook into various actions during the order process. This can be done in two ways:
-
by calling the Shopgate API from an external system or
-
by hooking into events emitted by the Shopgate order process like
salesOrderAdded,fulfillmentOrderUpdated, andschedulePickupReminderTimeReached. For a complete list of supported events see Webhook Events. To learn how to work with the Shopgate webhooks see Webhook Integration Guide

