Bom Step

BOM Step

BOM Step is a Child object of Bill of Materials  

End Point

/bomstep

GET, POST, PUT, DELETE

GET and DELETE requests expect parameter id of type Int32.

Properties

Property Caption Data Type RequiredRead Only
Id Id Int32 For PUTTrue
BOMId n/a Int32 TrueTrue for PUT
StepRef Step EntityRef
TrueFalse
DisplayOrder Line No. Int16 FalseTrue
TimeToComplate Time Decimal TrueFalse
UOMRef UOM EntityRef
TrueFalse
IsOneTime One Time Boolean
FalseFalse
Description Description String (50) FalseTrue (Edit in Step)
LocationRef Alt. Phone EntityRef
FalseTrue (Edit in Step)
PartsCost Parts Cost Decimal FalseTrue (Calculated)
NonPartCost Non Part Cost Decimal FalseTrue (Calculated)
TotalCost Total Cost Decimal FalseTrue (Calculated)
IsActive Active Boolean FalseFalse

- BOMId is the Id of the partent Bill of Materials

- UOM Ref must either be Minute, Hour, Day, Week or Month 


Json Sample

{
    "Id": 111,
    "BOMId": 5
    "StepRef": {
        "Id": 1,
        "Name": "Default"
    },
    "DisplayOrder": 1,
    "TimeToComplete": 1.0,
    "UOMRef": {
        "Id": 18,
        "Name": "Hour"
    }, 
    "IsOneTime": false,
    "Description: "Default Step"    
    "LocationRef": {
        "Id": 10,
        "Name": "HQ"
    },
    "PartsCost": 303.12,
    "NonPartCost": 40.00,
    "TotalCost": 343.12,
    "IsActive": true
}