Class ShipmentWeightNote
Represents a shipment weightnote
Inheritance
Inherited Members
Namespace: Simplic.PlugIn.Logistics.Disposition
Assembly: Simplic.PlugIn.Logistics.dll
Syntax
public class ShipmentWeightNote
Constructors
| Improve this Doc View SourceShipmentWeightNote()
Initialize new weight note
Declaration
public ShipmentWeightNote()
Properties
| Improve this Doc View SourceAmount
Gets or sets the loaded amount
Declaration
public PreciseDecimal Amount { get; set; }
Property Value
Type | Description |
---|---|
PreciseDecimal |
CreateDateTime
Gets or sets the datetime datetime of the data
Declaration
public DateTime CreateDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
DocumentId
Gets or sets the document id
Declaration
public Guid? DocumentId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
FirstDate
Gets or sets the date for the first weighing
Declaration
public DateTime FirstDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
FirstTime
Gets or sets the time for the first weighing
Declaration
public TimeSpan FirstTime { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
FirstWeighing
Gets or sets the first weighing
Declaration
public PreciseDecimal FirstWeighing { get; set; }
Property Value
Type | Description |
---|---|
PreciseDecimal |
Id
Gets or sets the unique id of the weightnote
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
IsBillable
Gets or sets whether this weight note is billable. Only one weight-note in a shipment item should be billable
Declaration
public bool IsBillable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ItemId
Gets or sets the id of the assigned position
Declaration
public Guid? ItemId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
SecondDate
Gets or sets the date for the second weighing
Declaration
public DateTime SecondDate { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
SecondTime
Gets or sets the time for the second weighing
Declaration
public TimeSpan SecondTime { get; set; }
Property Value
Type | Description |
---|---|
System.TimeSpan |
SecondWeighing
Gets or sets the second weighing
Declaration
public PreciseDecimal SecondWeighing { get; set; }
Property Value
Type | Description |
---|---|
PreciseDecimal |
Shipment
Gets or sets the connected shipment
Declaration
public Shipment Shipment { get; set; }
Property Value
Type | Description |
---|---|
Shipment |
ShipmentGuid
Gets or sets the unique shipment guid
Declaration
public Guid ShipmentGuid { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
TypeId
Gets or sets the type of the weight note
Declaration
public WeightNoteType TypeId { get; set; }
Property Value
Type | Description |
---|---|
WeightNoteType |
WeightNoteNumber
Gets or sets the weight note number
Declaration
public string WeightNoteNumber { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceDeepCopy(Boolean, Guid, Guid)
Copy weight note
Declaration
public ShipmentWeightNote DeepCopy(bool newId, Guid shipmentId, Guid shipmentItemId)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | newId | True if a new id should be generated |
System.Guid | shipmentId | |
System.Guid | shipmentItemId | Shipment item id |
Returns
Type | Description |
---|---|
ShipmentWeightNote | New weightnote instance |