Description

An Order is a request to produce a specified quantity of an Item Specification using a designated Bill Of Process. Each Order is assigned a unique auto-generated order number and produces individual Items that are tracked through the manufacturing process. Orders can be activated or deactivated to control production flow.

Properties

Property NameProperty TypeNullableDescription
idGuidfalseThe unique identifier of the Order.
orderNumberulongfalseA unique auto-generated sequential number assigned to the Order for human-readable identification.
createdAtDateTimefalseThe date and time the Order was created.
updatedAtDateTimefalseThe date and time the Order was last updated.
createdByIdGuidfalseThe unique identifier of the user who created the Order.
updatedByIdGuidfalseThe unique identifier of the user who last updated the Order.
itemSpecificationIdGuidfalseThe unique identifier of the Item Specification to be produced.
billOfProcessIdGuidfalseThe unique identifier of the Bill Of Process that defines the production steps for this Order.
isActiveboolfalseWhether the Order is currently active and open for production.
itemQuantitydoublefalseThe total quantity of items to be produced for this Order. Supports fractional quantities.
attributesJsonDocumenttrueA flexible JSON object for storing additional user-defined attributes of the Order.