first public version

This commit is contained in:
Jonathan Jenne
2020-09-22 10:50:20 +02:00
parent 82ec7c9ecb
commit 314038d133
24 changed files with 1347 additions and 340 deletions

View File

@@ -1,26 +1,28 @@
Imports DigitalData.Modules.Config.ConfigAttributes
Public Class Config
Public Property ConnectionString As String = ""
Public Property WinLine_WebService As New WebServiceConfig
Public Enum ActionCode
CHECK_ONLY = 0
IMPORT = 1
End Enum
Public Class Config
Public Property WinlineConnectionString As String = ""
Public Property EXIMConnectionString As String = ""
Public Property CompletionMacro As String = ""
Public Property ImportantNotes As List(Of String) = New List(Of String)
Public Property WebService As New WebServiceConfig
Public Class WebServiceConfig
Public Property Server As String = ""
Public Property Username As String = ""
Public Property Password As String = ""
Public Property Mandator As String = ""
Public Property ActionCode As ActionCode = ActionCode.IMPORT
Public Property ArticleTemplateName As String = ""
Public Property ArticleTemplateType As Integer = 30
Public Property ActionCode As Integer = 1
Public Property TaxCode As Integer = 3
Public Property PriceTemplateName As String = ""
Public Property ShapeFrom As String = "A"
Public Property ShapeTo As String = "C"
Public Property ArticleTemplateName As String = "EXIM-Artikelnummergenerator"
Public Property ArticleTemplateType As Integer = 4
Public Property PriceTemplateName As String = "EXIM-Artikelnummergenerator"
Public Property PriceTemplateType As Integer = 5
End Class
End Class