Class ShipmentDocument
Represents a shipment document. Furthermore, this object connects the document with some more details in the shipment, e.g. item, weight note. Additionally, this marks a document attachment for invoices and orders them.
Inheritance
System.Object
ShipmentDocument
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: Simplic.Logistics
Assembly: Simplic.Logistics.dll
Syntax
public class ShipmentDocument
Properties
| Improve this Doc View SourceDocumentId
Gets or sets the document id
Declaration
public Guid DocumentId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
InvoiceOrderNr
Gets or sets the invoice order number
Declaration
public int InvoiceOrderNr { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
IsInvoiceAttachment
Gets or sets whether this document should be attached to an invoice or not
Declaration
public bool IsInvoiceAttachment { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ShipmentId
Gets or sets the shipment id
Declaration
public Guid ShipmentId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
ShipmentItemId
Gets or sets the shipment item id
Declaration
public Guid? ShipmentItemId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Status
Gets or sets the shipment document status
Declaration
public ShipmentDocumentStatus Status { get; set; }
Property Value
Type | Description |
---|---|
ShipmentDocumentStatus |
WeightNoteId
Gets or sets the weight note id
Declaration
public Guid? WeightNoteId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |