Skip to main content

JobStatus

Enumeration of manufacturing job statuses.

Defines the possible states of a manufacturing job throughout its lifecycle, from planning to completion.

Values

ValueDescription
PLANNEDJob is scheduled but not yet started
IN_PROGRESSJob is currently being executed
ON_HOLDJob is temporarily suspended
COMPLETEDJob has been successfully finished
CANCELLEDJob was terminated before completion

Usage Example

from omm import JobStatus

# Access enum value
value = JobStatus.PLANNED

# Value comparison
if value == JobStatus.PLANNED:
print(f'Value is PLANNED')