import { ShopifyOrderFulfillmentStatus } from '@daffodil/driver/shopify'
The aggregated fulfillment status of an Order, summarizing the state of all line items. Used for display purposes.
Statuses range from unfulfilled to fully fulfilled, with intermediate states such as in progress and on hold.
Learn more about order statuses.
enum ShopifyOrderFulfillmentStatus {
Fulfilled = ShopifyOrderFulfillmentStatus.Fulfilled,
InProgress = ShopifyOrderFulfillmentStatus.InProgress,
OnHold = ShopifyOrderFulfillmentStatus.OnHold,
Open = ShopifyOrderFulfillmentStatus.Open,
PartiallyFulfilled = ShopifyOrderFulfillmentStatus.PartiallyFulfilled,
PendingFulfillment = ShopifyOrderFulfillmentStatus.PendingFulfillment,
Restocked = ShopifyOrderFulfillmentStatus.Restocked,
Scheduled = ShopifyOrderFulfillmentStatus.Scheduled,
Unfulfilled = ShopifyOrderFulfillmentStatus.Unfulfilled,
}
Fulfilled ShopifyOrderFulfillmentStatus.Fulfilled |
|---|
Displayed as Fulfilled. All of the items in the order have been fulfilled. |
InProgress ShopifyOrderFulfillmentStatus.InProgress |
|---|
Displayed as In progress. Some of the items in the order have been fulfilled, or a request for fulfillment has been sent to the fulfillment service. |
OnHold ShopifyOrderFulfillmentStatus.OnHold |
|---|
Displayed as On hold. All of the unfulfilled items in this order are on hold. |
Open ShopifyOrderFulfillmentStatus.Open |
|---|
Displayed as Open. None of the items in the order have been fulfilled. Replaced by "UNFULFILLED" status. |
PartiallyFulfilled ShopifyOrderFulfillmentStatus.PartiallyFulfilled |
|---|
Displayed as Partially fulfilled. Some of the items in the order have been fulfilled. |
PendingFulfillment ShopifyOrderFulfillmentStatus.PendingFulfillment |
|---|
Displayed as Pending fulfillment. A request for fulfillment of some items awaits a response from the fulfillment service. Replaced by "IN_PROGRESS" status. |
Restocked ShopifyOrderFulfillmentStatus.Restocked |
|---|
Displayed as Restocked. All of the items in the order have been restocked. Replaced by "UNFULFILLED" status. |
Scheduled ShopifyOrderFulfillmentStatus.Scheduled |
|---|
Displayed as Scheduled. All of the unfulfilled items in this order are scheduled for fulfillment at later time. |
Unfulfilled ShopifyOrderFulfillmentStatus.Unfulfilled |
|---|
Displayed as Unfulfilled. None of the items in the order have been fulfilled. |