ManufacturingOrders
Queryable, Introduced in version 2.18
GET https://localhost:8001/sv/001.1/api/v1/Manufacturing/ManufacturingOrders
Represents a manufacturing order.
GUID
68181D89-48D6-4A70-949B-3EACE0A00B70
Required permission
Show manufacturing orders
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
Id | Int64 | The business key identifier of the manufacturing order. |
|
OrderNumber | String | The order number of the manufacturing order.
|
|
Status | Int32 | The status of the manufacturing order.
|
|
WarehouseId | Int64 | The business key identifier of the warehouse that the manufacturing order belongs to. References Warehouses |
|
CommentId | Int64? | The business key identifier of the comment that belongs to the manufacturing order. References Comments |
|
Comment | Comments | The comment that belongs to the manufacturing order.
|
|
PartId | Int64 | The business key identifier of the part that the manufacturing order is to produce. References Parts |
|
Part | Parts | The part that the manufacturing order is to produce.
|
|
ReportedQuantity | Decimal | The reported quantity of the main manufacturing order node. |
|
PlannedQuantity | Decimal | The planned quantity of the main manufacturing order node. |
|
RestQuantity | Decimal | The rest quantity of the main manufacturing order node. |
|
StartDate | DateTimeOffset | The start date of the manufacturing order. |
|
FinishDate | DateTimeOffset | The finish date of the manufacturing order. |
|
Priority | Int32 | The priority of the manufacturing order. |
|
CustomerOrderId | Int64? | The business key identifier of the customer order that produced the manufacturing order. References CustomerOrders |
|
CustomerOrder | CustomerOrders | The customer order that produced the manufacturing order.
|
|
Operations | ManufacturingOrderOperations[] | The manufacturing order operations that belong to the manufacturing order.
|
|
Materials | ManufacturingOrderMaterials[] | The manufacturing order materials that belong to the manufacturing order.
|
|
Nodes | ManufacturingOrderNodes[] | The manufacturing order nodes that belong to the manufacturing order. It is flattened, not a structure.
|
Introduced in version 2.30 |
ProjectId | Int64? | The business key identifier of the project that belongs to the manufacturing order. References Projects |
Introduced in version 2.31 |
Project | Projects | The project that belongs to the manufacturing order. Can be null.
|
Introduced in version 2.31 |
CategoryString | String | The category string of the manufacturing order.
|
Introduced in version 2.41 |
VariantCode | String | The variant code on the manufacturing order.
|
Introduced in version 2.53 |
CustomerId | Int64? | The business key identifier of the customer on the manufacturing order.
|
Introduced in version 2.53 |
InitialFinishDate | DateTimeOffset | The initial finish date for the manufacturing order. |
Introduced in version 2.53 |
PartConfigurationId | Int64? | The business key identifier of the manufacturing order's part configuration.
|
Introduced in version 2.55 |
OrderQuantityId | Int64? | The business key identifier of order quantity.
|
Introduced in version 22.6 |
OrderQuantity | OrderQuantityManufacturingOrders | Order quantity that holds the partial quantities.
|
Introduced in version 22.6 |
OrderTypeId | Int64? | The business key identifier of order type.
|
Introduced in version 24.3 |
OrderType | ManufacturingOrderTypes | Order type of the Manufacturing Order.
|
Introduced in version 24.3 |
Example
{
"Id": 0,
"OrderNumber": null,
"Status": 0,
"WarehouseId": 0,
"CommentId": null,
"Comment": null,
"PartId": 0,
"Part": null,
"ReportedQuantity": 0.0,
"PlannedQuantity": 0.0,
"RestQuantity": 0.0,
"StartDate": "0001-01-01T00:00:00+00:00",
"FinishDate": "0001-01-01T00:00:00+00:00",
"Priority": 0,
"CustomerOrderId": null,
"CustomerOrder": null,
"Operations": null,
"Materials": null,
"Nodes": null,
"ProjectId": null,
"Project": null,
"CategoryString": null,
"VariantCode": null,
"CustomerId": null,
"InitialFinishDate": "0001-01-01T00:00:00+00:00",
"PartConfigurationId": null,
"OrderQuantityId": null,
"OrderQuantity": null,
"OrderTypeId": null,
"OrderType": null
}