update 20251210

This commit is contained in:
Stefan Hutter
2025-12-10 17:42:12 +01:00
parent 10ed1e6087
commit 6ac2108d40
303 changed files with 2207203 additions and 1040 deletions

94
Model/APEError.cs Normal file
View File

@@ -0,0 +1,94 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class APIOK
{
public string code { get; set; }
public string status { get; set; }
public string message { get; set; }
public string documentid { get; set; }
public string file { get; set; }
}
public class APIErrorSimple
{
public string code { get; set; }
public string status { get; set; }
public string message { get; set; }
public string traceid { get; set; }
public string field { get; set; }
}
public class APIErrorExtended
{
public string type { get; set; }
public List<string> required { get; set; }
public Properties properties { get; set; }
}
public class Code
{
public string type { get; set; }
public string pattern { get; set; }
public string example { get; set; }
}
public class Errors
{
public string type { get; set; }
public string description { get; set; }
public Items items { get; set; }
}
public class Field
{
public string type { get; set; }
public string description { get; set; }
public string example { get; set; }
}
public class Items
{
public string type { get; set; }
public Properties properties { get; set; }
}
public class Message
{
public string type { get; set; }
public string example { get; set; }
}
public class Properties
{
public Code code { get; set; }
public Status status { get; set; }
public Message message { get; set; }
public TraceId traceId { get; set; }
public Field field { get; set; }
public Errors errors { get; set; }
}
public class Root
{
}
public class Status
{
public string type { get; set; }
public int example { get; set; }
}
public class TraceId
{
public string type { get; set; }
public string example { get; set; }
}
}

View File

@@ -43,6 +43,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="AavaloqDokumentWerte.cs" />
<Compile Include="APEError.cs" />
<Compile Include="Class1.cs" />
<Compile Include="clsDocData.cs" />
<Compile Include="clsdocgendata.cs" />

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Security.Permissions;
using System.Text;
@@ -9,18 +10,18 @@ namespace Model
{
public class DocCreate
{
public string Result_Versandstrasse { get; set; }
public string Versand_Direkt { get; set; } = "";
public string Versand_Option { get; set; } = "";
public string GAS_Adresse { get; set; } = "";
public string Result_OnDoc { get; set; }
public string Result_Sender { get; set; }
public string Result_FileType { get; set; }
public string Versandstrasse { get; set; }
public string VersandDirekt { get; set; } = "";
public string VersandOption { get; set; } = "";
public string GASAdresse { get; set; } = "";
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; }
public string VorlagenTypID { get; set; }
public string Paket { get; set; }
public string Partnernr { get; set; }
public string PartnerNr { get; set; }
public string PersonNr { get; set; }
public string TGNrErsteller { get; set; }
public string TGNrVerantwortlich { get; set; }
@@ -32,14 +33,34 @@ namespace Model
public string PrintLogo { get; set; }
public string Dokumentdatum { get; set; }
public string Bezeichnung { get; set; }
public string Herkunftsapplikation { get; set; }
public string OnDocSignCheck { get; set; }
public string Reference { get; set; }
public List<attribute> APIValues { get; set; }
public List<textreplace> TextToReplace { get; set; }
public List<Listen> Listen { get; set; }
}
public class Liste
{
public string Listname { get; set; }
public string Placeholder { get; set; }
public string Tag { get; set; }
public string Value { get; set; }
}
public class Listen
{
public List<Liste> Liste { get; set; }
}
public class attribute
{
public string Tag { get; set; }
public string Value { get; set; }
public string Type { get; set; }
}
public class textreplace
{
@@ -47,26 +68,35 @@ namespace Model
public string TextToReplace { get; set; }
}
public class JsonTable
{
public List<Dictionary<string, object>> Listen { get; set; }
}
public class DokumentCreate
{
public string Versandstrasse { get; set; }
public string Versand_Direkt { get; set; } = "";
public string Versand_Verantwortlich { get; set; }
public string Versand_Option { get; set; } = "";
public string GAS_Adresse { get; set; } = "";
public string GAS_Couvert { get; set; } = "C5mini";
public string Result_OnDoc { get; set; }
public string Result_Sender { get; set; }
public string Result_FileType { get; set; }
public string VersandDirekt { get; set; } = "";
public string VersandVerantwortlich { get; set; }
public string VersandOption { get; set; } = "";
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; }
public string Herkunftsapplikation { get; set; }
public string OnDocSignCheck { get; set; }
public string Paketbezeichnung { get; set; }
public string Reference { get; set; }
public List<APIDokument> Dokumente { get; set; }
}
public class APIDokument
{
public string VorlagenTypID { get; set; }
public string Partnernr { get; set; }
public string PartnerNr { get; set; }
public string TGNrErsteller { get; set; }
public string TGNrVerantwortlich { get; set; }
public string TGNrUnterschriftLinks { get; set; }
@@ -88,6 +118,7 @@ namespace Model
{
public string dokumentid { get; set; }
public string dokument { get; set; }
}
}

Binary file not shown.

Binary file not shown.

View File

@@ -78,7 +78,7 @@ namespace Model
public bool FillOffice { get; set; } = false;
public string UseEDOKA_Values { get; set; }
public bool signiert { get; set; } = false;
public bool remove_signature { get; set; } = false;

View File

@@ -1 +1 @@
5ca5a7462f3f1c9f9ca8d242a4d672e61cfe3cd0e696611c116ca39934e42110
f95c7864a23e7cef9fc3bc443fe10840a224a0a8828b1612f6019ceacf50d1ec

Binary file not shown.

Binary file not shown.