import { OrderFulfillmentStatus } from '@daffodil/driver/shopify'
Represents the order's aggregated fulfillment status for display purposes.
enum OrderFulfillmentStatus {
Fulfilled = OrderFulfillmentStatus.Fulfilled,
InProgress = OrderFulfillmentStatus.InProgress,
OnHold = OrderFulfillmentStatus.OnHold,
Open = OrderFulfillmentStatus.Open,
PartiallyFulfilled = OrderFulfillmentStatus.PartiallyFulfilled,
PendingFulfillment = OrderFulfillmentStatus.PendingFulfillment,
Restocked = OrderFulfillmentStatus.Restocked,
Scheduled = OrderFulfillmentStatus.Scheduled,
Unfulfilled = OrderFulfillmentStatus.Unfulfilled,
}
Fulfilled OrderFulfillmentStatus.Fulfilled |
---|
Displayed as Fulfilled. All of the items in the order have been fulfilled. |
InProgress OrderFulfillmentStatus.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 OrderFulfillmentStatus.OnHold |
---|
Displayed as On hold. All of the unfulfilled items in this order are on hold. |
Open OrderFulfillmentStatus.Open |
---|
Displayed as Open. None of the items in the order have been fulfilled. Replaced by "UNFULFILLED" status. |
PartiallyFulfilled OrderFulfillmentStatus.PartiallyFulfilled |
---|
Displayed as Partially fulfilled. Some of the items in the order have been fulfilled. |
PendingFulfillment OrderFulfillmentStatus.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 OrderFulfillmentStatus.Restocked |
---|
Displayed as Restocked. All of the items in the order have been restocked. Replaced by "UNFULFILLED" status. |
Scheduled OrderFulfillmentStatus.Scheduled |
---|
Displayed as Scheduled. All of the unfulfilled items in this order are scheduled for fulfillment at later time. |
Unfulfilled OrderFulfillmentStatus.Unfulfilled |
---|
Displayed as Unfulfilled. None of the items in the order have been fulfilled. |