Skip to main content

ProductionState

Enumeration of different production states for parts and products.

Defines the various stages a part or product can be in during the manufacturing process, from raw material to finished product.

Values

ValueDescription
RAWUnprocessed material at start of production
NEWNewly created or received item
WORK_IN_PROGRESSPartially completed item in production
FINISHEDCompleted item ready for delivery
DEFECTIVEItem that fails quality standards
ON_HOLDItem temporarily suspended from production

Usage Example

from omm import ProductionState

# Access enum value
value = ProductionState.RAW

# Value comparison
if value == ProductionState.RAW:
print(f'Value is RAW')