Bitte prüfen Sie die Datei und nehmen Sie bei Bedarf mit uns Kontakt auf.
- Vielen Dank für Ihr Verständnis.
Mit freundlichen Grüßen
Ihre IT-Abteilung
- """
+ Vielen Dank für Ihr Verständnis.
Mit freundlichen Grüßen
Ihre IT-Abteilung"
Private Const EMAIL_SUBJECT = "WISAG ZUGFeRD Portal: Beleg abgelehnt"
Private Const EMAIL_MISSINGPROPERTIES_1 = "
Die angehängte Datei entspricht nicht dem WISAG ZUGFeRD-Format: {0}
" Private Const EMAIL_MISSINGPROPERTIES_2 = "Die folgenden Eigenschaften wurden als ERFORDERLICH eingestuft, wurden aber nicht gefunden:
" @@ -196,7 +194,7 @@ Public Class ImportZUGFeRDFiles If oDTResult.Rows.Count = 0 Then Dim oSQLInsert = $"INSERT INTO TBEDM_EMAIL_QUEUE " oSQLInsert &= "(JOB_ID, REFERENCE1, EMAIL_ACCOUNT_ID, EMAIL_TO, EMAIL_SUBJ, EMAIL_BODY, CREATEDWHO, EMAIL_ATTMT1) VALUES " - oSQLInsert &= $"({oJobId}, '{oReference}', {oAccountId}, '{oEmailTo}', '{oSubject}', '{oFinalBodyText}', '{oCreatedWho}', '{oAttachment}')" + oSQLInsert &= $"({oJobId}, '{oReference}', {oAccountId}, '{oEmailTo}', '{oSubject}', '{oFinalBodyText.Replace("'", "''")}', '{oCreatedWho}', '{oAttachment}')" _firebird.ExecuteNonQuery(oSQLInsert) _logger.Debug("Email Queue updated for MessageId {0}.", MessageId, oEmailTo) Else @@ -235,39 +233,43 @@ Public Class ImportZUGFeRDFiles _logger.Debug("To: {0}", oEmailTo) _logger.Debug("Subject: {0}", oSubject) _logger.Debug("Body {0}", oFinalBodyText) - Dim osql = $"Select MAX(GUID) FROM TBEMLP_HSITORY WHERE EMAIL_MSG_ID = '{MessageId}'" + Dim osql = $"Select MAX(GUID) FROM TBEMLP_HISTORY WHERE EMAIL_MSGID = '{MessageId}'" Dim oHistoryID = _mssql.GetScalarValue(osql) - osql = $"select * from TBEDM_EMAIL_QUEUE where REFERENCE_ID = {oHistoryID} and EMAIL_ADRESS = '{oEmailTo}' and EMAIL_SUBJ = '{oSubject}'" + 'osql = $"select * from TBEMLP_EMAIL_OUT where REFERENCE_ID = {oHistoryID} and EMAIL_ADRESS = '{oEmailTo}' and EMAIL_SUBJ = '{oSubject}'" - Dim oDTResult As DataTable = _mssql.GetDatatable(osql) + 'Dim oDTResult As DataTable = _mssql.GetDatatable(osql) - If IsNumeric(oHistoryID) And oDTResult.Rows.Count = 0 Then - Dim oInsert = $"INSERT INTO [dbo].[TBEMLP_EMAIL_OUT] ([REMINDER_TYPE_ID],[SENDING_PROFILE], + If IsNumeric(oHistoryID) Then + Dim oInsert = $"INSERT INTO [dbo].[TBEMLP_EMAIL_OUT] ( + [REMINDER_TYPE_ID] + ,[SENDING_PROFILE] ,[REFERENCE_ID] ,[REFERENCE_STRING] + ,[WF_ID] ,[EMAIL_ADRESS] ,[EMAIL_SUBJ] ,[EMAIL_BODY] ,[COMMENT] ,[ADDED_WHO]) VALUES - (99 + (77 ,{oAccountId} ,{oHistoryID} ,'{MessageId}' + ,77 ,'{oEmailTo}' ,'{oSubject}' ,'{oFinalBodyText}' ,'{SourceProcedure}' - ,'{oCreatedWho}'" + ,'{oCreatedWho}')" _mssql.ExecuteNonQuery(oInsert) Else - If oDTResult.Rows.Count = 0 Then - _logger.Debug("Email has already been sent!!") - Else - _logger.Debug("Could not get oHistoryID!!") - End If + 'If oDTResult.Rows.Count = 0 Then + ' _logger.Debug("Email has already been sent!!") + 'Else + _logger.Warn("Could not get oHistoryID in AddToEmailQueueMSSQL!!") + ' End If End If Catch ex As Exception _logger.Error(ex) @@ -317,13 +319,13 @@ Public Class ImportZUGFeRDFiles Dim oArgs As WorkerArgs = Arguments Dim oPropertyExtractor = New PropertyValues(_logConfig) - _logger.Info("Starting Job {0}", [GetType].Name) + _logger.Debug("Starting Job {0}", [GetType].Name) Try For Each oPath As String In oArgs.WatchDirectories Dim oDirInfo As New DirectoryInfo(oPath) - _logger.Info($"Start processing directory {oDirInfo.FullName}") + _logger.Debug($"Start processing directory {oDirInfo.FullName}") If oDirInfo.Exists Then ' Filter out *.lock files @@ -335,7 +337,7 @@ Public Class ImportZUGFeRDFiles Dim oCurrentFileCount = 0 If oFileCount = 0 Then - _logger.Info("No files to process.") + _logger.Debug("No files to process.") Continue For Else _logger.Info("Found {0} files", oFileCount) @@ -713,7 +715,7 @@ Public Class ImportZUGFeRDFiles End If Next - _logger.Info("Finishing Job {0}", Me.GetType.Name) + _logger.Debug("Finishing Job {0}", Me.GetType.Name) Catch ex As Exception _logger.Error(ex) _logger.Info("Job Failed! See error log for details")