56 lines
1.8 KiB
VB.net
56 lines
1.8 KiB
VB.net
Imports DevExpress.XtraGrid.Columns
|
|
|
|
Public Class DocumentPositions
|
|
Public Class OrderPosition
|
|
Public Property RowNumber As Integer
|
|
Public Property ArticleNumber As String
|
|
Public Property ArticleNumberVendor As String
|
|
Public Property ArticleDescription As String
|
|
Public Property EDIPrice As Double
|
|
Public Property WinLinePrice As Double
|
|
Public Property Price As Double
|
|
Public Property Amount As Double
|
|
End Class
|
|
|
|
Public Shared Property ColumnRowNumber As New GridColumn With {
|
|
.FieldName = "RowNumber",
|
|
.Caption = "Nr.",
|
|
.VisibleIndex = 0
|
|
}
|
|
Public Shared Property ColumnArticleNumber As New GridColumn With {
|
|
.FieldName = "ArticleNumber",
|
|
.Caption = "Artikelnummer",
|
|
.VisibleIndex = 1
|
|
}
|
|
Public Shared Property ColumnArticleNumberVendor As New GridColumn With {
|
|
.FieldName = "ArticleNumberVendor",
|
|
.Caption = "Artikel Lieferant",
|
|
.VisibleIndex = 2
|
|
}
|
|
Public Shared Property ColumnArticleDescription As New GridColumn With {
|
|
.FieldName = "ArticleDescription",
|
|
.Caption = "Artikel Beschreibung",
|
|
.VisibleIndex = 3
|
|
}
|
|
Public Shared Property ColumnAmount As New GridColumn With {
|
|
.FieldName = "Amount",
|
|
.Caption = "Menge",
|
|
.VisibleIndex = 4
|
|
}
|
|
Public Shared Property ColumnEDIPrice As New GridColumn With {
|
|
.FieldName = "EDIPrice",
|
|
.Caption = "Einzelpreis EDI",
|
|
.VisibleIndex = 5
|
|
}
|
|
Public Shared Property ColumnWinLinePrice As New GridColumn With {
|
|
.FieldName = "WinLinePrice",
|
|
.Caption = "Einzelpreis WinLine",
|
|
.VisibleIndex = 6
|
|
}
|
|
Public Shared Property ColumnPrice As New GridColumn With {
|
|
.FieldName = "Price",
|
|
.Caption = "Einzelpreis",
|
|
.VisibleIndex = 7
|
|
}
|
|
End Class
|