update 20260220

This commit is contained in:
Stefan Hutter
2026-02-20 18:04:31 +01:00
parent 9e64ca707d
commit 30d047e33d
100 changed files with 11274 additions and 442 deletions

View File

@@ -10,15 +10,23 @@ namespace Model
{
public class DocCreate
{
public string Versandstrasse { get; set; }
public string VersandDirekt { get; set; } = "";
public string VersandOption { get; set; } = "";
public string GASAdresse { get; set; } = "";
private string _Versandstrasse = "false";
public string Versandstrasse
{ get => _Versandstrasse; set => _Versandstrasse = value ?? "false"; }
private string _VersandDirekt = "";
public string VersandDirekt { get =>_VersandDirekt; set =>_VersandDirekt = value ?? ""; }
private string _VersandOption = "B1_Post";
public string VersandOption { get => _VersandOption; set => _VersandOption =value?? "B1_POST"; }
private string _GASAdresse = "";
public string GASAdresse { get =>_GASAdresse; set => _GASAdresse = value??""; }
public string ResultOnDoc { get; set; }
public string ResultSender { get; set; }
public string ResultFileType { get; set; }
public string ConfirmationMail { get; set; }
public string ConfirmationMailAddress { get; set; }
private string _ConfirmationMailAddress = "";
public string ConfirmationMailAddress { get => _ConfirmationMailAddress; set => _ConfirmationMailAddress=value??""; }
public string VorlagenTypID { get; set; }
public string Paket { get; set; }
public string PartnerNr { get; set; }
@@ -28,6 +36,9 @@ namespace Model
public string TGNrUnterschriftLinks { get; set; }
public string TGNrUnterschriftRechts { get; set; }
public string UnterschriftLinksGeprueft { get; set; }
public string UnterschriftRechtsGeprueft { get; set; }
public string OhneUnterschrift { get; set; }
public string FaksimileUnterschrift { get; set; }
public string PrintLogo { get; set; }
@@ -36,7 +47,9 @@ namespace Model
public string Herkunftsapplikation { get; set; }
public string OnDocSignCheck { get; set; }
public string Reference { get; set; }
private string _Reference = "";
public string Reference { get => _Reference; set => _Reference = value ?? ""; }
public List<attribute> APIValues { get; set; }
public List<textreplace> TextToReplace { get; set; }
@@ -62,7 +75,8 @@ namespace Model
{
public string Tag { get; set; }
public string Value { get; set; }
public string Type { get; set; }
private string _Type = "";
public string Type { get => _Type; set => _Type = value ?? ""; }
}
public class textreplace
{
@@ -77,17 +91,19 @@ namespace Model
}
public class DokumentCreate
{
public string Versandstrasse { get; set; }
public string VersandDirekt { get; set; } = "";
public string VersandVerantwortlich { get; set; }
public string VersandOption { get; set; } = "";
public string VersandOption { get; set; } = "B2_Post";
public string GASAdresse { get; set; } = "";
public string GASCouvert { get; set; } = "C5mini";
public string ResultOnDoc { get; set; }
public string ResultSender { get; set; }
public string ResultFileType { get; set; }
public string ConfirmationMail { get; set; }
public string ConfirmationMailAddress { get; set; }
private string _ConfirmationMailAddress = "";
public string ConfirmationMailAddress { get => _ConfirmationMailAddress; set => _ConfirmationMailAddress = value ?? ""; }
public string Herkunftsapplikation { get; set; }
public string OnDocSignCheck { get; set; }
public string Paketbezeichnung { get; set; }

Binary file not shown.

Binary file not shown.

View File

@@ -105,6 +105,12 @@ namespace Model
public string img_unterschrift_links { get; set; } = "";
public string img_unterschrift_rechts { get; set; } = "";
public string img_logo { get; set; }="";
public int logo_top { get; set; } = 20;
public int logo_left { get; set; } = 25;
public int logo_width { get; set; } = 160;
public int logo_heigth { get; set; } = 40;
public bool print_signature { get; set; } = true;
}

Binary file not shown.

Binary file not shown.