MS Administration

This commit is contained in:
Developer01 2025-05-08 09:20:28 +02:00
parent 5774eb7686
commit fa00f2ab54
4 changed files with 17 additions and 1 deletions

View File

@ -82,6 +82,7 @@
<ItemGroup> <ItemGroup>
<Compile Include="Base\BaseClass.vb" /> <Compile Include="Base\BaseClass.vb" />
<Compile Include="Base\BaseUtils.vb" /> <Compile Include="Base\BaseUtils.vb" />
<Compile Include="ECM\ECM.vb" />
<Compile Include="Encryption\Compression.vb" /> <Compile Include="Encryption\Compression.vb" />
<Compile Include="Encryption\Encryption.vb" /> <Compile Include="Encryption\Encryption.vb" />
<Compile Include="Encryption\EncryptionLegacy.vb" /> <Compile Include="Encryption\EncryptionLegacy.vb" />

8
Base/ECM/ECM.vb Normal file
View File

@ -0,0 +1,8 @@
Public Class ECM
Public Enum Product
taskFLOW
easyFLOW
fileFLOW
signFLOW
End Enum
End Class

View File

@ -143,6 +143,8 @@ Public Class XRechnungViewDocument
oIsPosition = True oIsPosition = True
ElseIf oArea = "PAYMENT" Then ElseIf oArea = "PAYMENT" Then
oAREACaption = "Zahlungsinformationen / Payment details:" oAREACaption = "Zahlungsinformationen / Payment details:"
ElseIf oArea = "EXEMPTION" Then
oAREACaption = "UST.-Befreiungsgrund / Exemption reason:"
Else Else
oAREACaption = String.Empty oAREACaption = String.Empty
End If End If
@ -170,6 +172,8 @@ Public Class XRechnungViewDocument
MyGDPicturePDF.DrawText(fontResName, 181, yPosition, "Betrag/sum") MyGDPicturePDF.DrawText(fontResName, 181, yPosition, "Betrag/sum")
yPosition += 5 yPosition += 5
'Tabellendarstellung Ende 'Tabellendarstellung Ende
ElseIf oArea = "EXEMPTION" Then
End If End If
End If End If
If oArea = "TYPE" Then If oArea = "TYPE" Then
@ -206,6 +210,7 @@ Public Class XRechnungViewDocument
oDisplay = False oDisplay = False
yPosition -= 5 yPosition -= 5
End If End If
End If End If
Else Else
'INDIVIDUELLES VERHALTEN BEI Folge-ITEMS 'INDIVIDUELLES VERHALTEN BEI Folge-ITEMS
@ -304,6 +309,8 @@ Public Class XRechnungViewDocument
oDisplay = False oDisplay = False
ElseIf oItemSPECNAME = "INVOICE_TAXPOS_TYPE" Then ElseIf oItemSPECNAME = "INVOICE_TAXPOS_TYPE" Then
oPosTerm += $" {oItemValue}" oPosTerm += $" {oItemValue}"
ElseIf oItemValue.Contains("EXEMPTION") Then
_logger.Debug($"We got an Exemption: {oItemValue}")
End If End If
oItemValue = oPosTerm oItemValue = oPosTerm
End If End If

View File

@ -784,7 +784,7 @@ Public Class Windream
Return False Return False
End Try End Try
_logger.Info($"File '{FilenameTarget}' has been streamde successfully!") _logger.Info($"File '{FilenameTarget}' has been successfully streamed to windream!")
Dim oDocid = GetIndexValue(FilenameTarget, "Dokument-ID") Dim oDocid = GetIndexValue(FilenameTarget, "Dokument-ID")
If Not IsNothing(oDocid) Then If Not IsNothing(oDocid) Then
NewDocumentID = oDocid(0) NewDocumentID = oDocid(0)