Compare commits
4 Commits
0841f82ba9
...
7d4bd94302
| Author | SHA1 | Date | |
|---|---|---|---|
| 7d4bd94302 | |||
| 197300799d | |||
| 5596552e3a | |||
| f3c4df03e1 |
@@ -41,9 +41,14 @@
|
||||
''' Minimum file age. If one file is newer than this, the whole group will be skipped
|
||||
''' to ensure that all files of a group have been created.
|
||||
''' </summary>
|
||||
''' <returns></returns>
|
||||
Public Property MinFileAgeInMinutes As Integer = 5
|
||||
|
||||
''' <summary>
|
||||
''' GUID des EMail Templates das bei Ablehnungsmails verwendet wird.
|
||||
''' Siehe Tabelle DD_ECM.dbo.TBDD_EMAIL_TEMPLATE
|
||||
''' </summary>
|
||||
Public Property RejectionTemplateId As Integer = 0
|
||||
|
||||
Public Property AllowFacturX As Boolean = False
|
||||
Public Property AllowXRechnung As Boolean = False
|
||||
Public Property AllowZugferd10 As Boolean = True
|
||||
|
||||
@@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyCompany("Digital Data")>
|
||||
<Assembly: AssemblyProduct("DDZUGFeRDService")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
||||
<Assembly: AssemblyTrademark("2.7.0.0")>
|
||||
<Assembly: AssemblyTrademark("2.8.1.0")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.7.0.0")>
|
||||
<Assembly: AssemblyFileVersion("2.7.0.0")>
|
||||
<Assembly: AssemblyVersion("2.8.1.0")>
|
||||
<Assembly: AssemblyFileVersion("2.8.1.0")>
|
||||
|
||||
@@ -51,7 +51,8 @@ Public Class ThreadRunner
|
||||
.AllowFacturX = _config.Config.Custom.AllowFacturX,
|
||||
.AllowXRechnung = _config.Config.Custom.AllowXRechnung,
|
||||
.AllowZugferd10 = _config.Config.Custom.AllowZugferd10,
|
||||
.AllowZugferd2x = _config.Config.Custom.AllowZugferd2x
|
||||
.AllowZugferd2x = _config.Config.Custom.AllowZugferd2x,
|
||||
.RejectionTemplateId = _config.Config.Custom.RejectionTemplateId
|
||||
}
|
||||
|
||||
oArgs = LoadFolderConfig(oArgs)
|
||||
@@ -62,6 +63,7 @@ Public Class ThreadRunner
|
||||
_logger.Debug("IgnoreRejectionStatus: [{0}]", oArgs.IgnoreRejectionStatus)
|
||||
_logger.Debug("MaxAttachmentSizeInMegaBytes: [{0}]", oArgs.MaxAttachmentSizeInMegaBytes)
|
||||
_logger.Debug("MinFileAgeInMinutes: [{0}]", oArgs.MinFileAgeInMinutes)
|
||||
_logger.Debug("RejectionTemplateId: [{0}]", oArgs.RejectionTemplateId)
|
||||
|
||||
_jobArguments = oArgs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user