Enum OrderProductionStatusContract
- Namespace
- Everest.Service.DataContracts.Orders.States.Production
- Assembly
- Everest.Service.dll
Represents the production status of an order in the Everest system.
[DataContract]
public enum OrderProductionStatusContract
Fields
[EnumMember] Analysis = 5The order is in the analysis stage.
[EnumMember] BulkPreparation = 3The order is in the bulk preparation stage.
[EnumMember] Confirmed = 1The order has been confirmed.
[EnumMember] MissingRaw = 2The order is missing raw materials.
[EnumMember] PendingConfirmation = 0The order is pending confirmation.
[EnumMember] ProductPreparation = 4The order is in the product preparation stage.
Examples
An example of using this enum might be:
OrderProductionStatus status = OrderProductionStatus.Confirmed;
Remarks
This enum is used to track the various stages an order can be in during its production lifecycle ( Everest.Core.OrderStatus.Production).