Class PurchaseOrderMaterialLine
Wraps a purchase order line that is associated with material, and can eventually have a corresponding receipt.
Inheritance
System.Object
PurchaseOrderMaterialLine
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Moraware.JobTrackerAPI5
Assembly: JobTrackerAPI5.dll
Syntax
public abstract class PurchaseOrderMaterialLine : PurchaseOrderLine
Properties
DeliveryDate
Date that this purchase order line was received.
Declaration
public DateTime? DeliveryDate { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.DateTime> |
IsTaxable
Indicates whether or not this line is taxable.
Declaration
public bool IsTaxable { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
OrderedQuantity
Quantity of the item this line refers to that has been ordered.
Declaration
public decimal OrderedQuantity { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Decimal |
ReceivedQuantity
Quantity of the item this line refers to that has been received.
Declaration
public decimal ReceivedQuantity { get; }
Property Value
| Type | Description |
|---|---|
| System.Decimal |
Status
Status of the purchase order line.
Declaration
public PurchaseOrder.PurchaseOrderStatusType_Enum Status { get; }
Property Value
| Type | Description |
|---|---|
| PurchaseOrder.PurchaseOrderStatusType_Enum |
StatusName
Status of the purchase order line.
Declaration
public string StatusName { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
TotalCost
Cost of the purchase order line.
Declaration
public decimal TotalCost { get; }
Property Value
| Type | Description |
|---|---|
| System.Decimal |
TotalUnits
.
Declaration
public decimal TotalUnits { get; }
Property Value
| Type | Description |
|---|---|
| System.Decimal |
TotalUnitsDescription
Display name describing the total units for this line item.
Declaration
public string TotalUnitsDescription { get; }
Property Value
| Type | Description |
|---|---|
| System.String |
UnitCost
Cost for a single unit of this line item.
Declaration
public decimal UnitCost { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Decimal |
UnitName
Name of the units used to measure this item.
Declaration
public string UnitName { get; }
Property Value
| Type | Description |
|---|---|
| System.String |