Table of Contents

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 = 5

The order is in the analysis stage.

[EnumMember] BulkPreparation = 3

The order is in the bulk preparation stage.

[EnumMember] Confirmed = 1

The order has been confirmed.

[EnumMember] MissingRaw = 2

The order is missing raw materials.

[EnumMember] PendingConfirmation = 0

The order is pending confirmation.

[EnumMember] ProductPreparation = 4

The 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).