Description

An Item represents a physical serialised unit being produced against an Order. Each Item is assigned a unique serial number generated from its Item Specification’s Serial Number Template, and progresses through the steps of its Bill Of Process. Items may be arranged in a parent-child hierarchy to represent assemblies and their sub-components.

Properties

Property NameProperty TypeNullableDescription
idGuidfalseThe unique identifier of the Item.
orderIdGuidfalseThe unique identifier of the Order that this Item belongs to.
itemSpecificationIdGuidfalseThe unique identifier of the Item Specification this Item is an instance of.
billOfProcessIdGuidfalseThe unique identifier of the Bill Of Process that defines the production steps for this Item.
parentItemIdGuidfalseThe unique identifier of the parent Item in an assembly hierarchy.
serialNumberstringfalseThe unique human-readable serial number assigned to this Item, generated from the Item Specification’s Serial Number Template.
itemNumberintfalseA unique sequential number assigned to this Item, used as an input when generating its serial number.
isCompleteboolfalseWhether the Item has completed all required process steps in its Bill of Process.
createdAtDateTimefalseThe date and time the Item was created.
updatedAtDateTimefalseThe date and time the Item was last updated.
createdByIdGuidfalseThe unique identifier of the user who created the Item.
updatedByIdGuidfalseThe unique identifier of the user who last updated the Item.
subItemsList<Item>falseA collection of child Items in the assembly hierarchy. Not persisted to the database.