diff --git a/API_NetFramework/Controllers/DocumentController.cs b/API_NetFramework/Controllers/DocumentController.cs index dcabb190..bfbad615 100644 --- a/API_NetFramework/Controllers/DocumentController.cs +++ b/API_NetFramework/Controllers/DocumentController.cs @@ -76,7 +76,7 @@ namespace API_NetFramework.Controllers [HttpPost] [Route("API/GenDoc")] - public IHttpActionResult GenDoc(string Partnernr, String Dokumenttypnr, string TGCreator="", string TGResp="", string TGUL="", string TGUR="", string Faksimile="", string FoU="") + public IHttpActionResult GenDoc(string Partnernr, String Dokumenttypnr, string TGCreator="", string TGResp="", string TGUL="", string TGUR="", string Faksimile="", string FoU="", string PrintLogo="") { if (!(ParamCheck("partnernr",Partnernr))) { return BadRequest("Partnernr " + Partnernr + " ist ungültig"); } if (!(ParamCheck("dokumenttyp", Dokumenttypnr))) { return BadRequest("Dokumenttyp " + Dokumenttypnr + " ist ungültig"); } @@ -86,6 +86,7 @@ namespace API_NetFramework.Controllers if (!(ParamCheck("tgul", TGUR))) { return BadRequest("TG Unterschrift rechts " + TGUR + " ist ungültig"); } if (!(ParamCheck("faksimile", Faksimile))) { return BadRequest("Parameter Faxsimile " + Faksimile + " ist ungültig"); } if (!(ParamCheck("formohneunterschrift", FoU))) { return BadRequest("Parameter Form ohne Unterschrift " + FoU + " ist ungültig"); } + if (!(ParamCheck("printlogo", PrintLogo))) { return BadRequest("Parameter PrintLogo " + PrintLogo + " ist ungültig"); } Database.DB db = new DB(connectionstring); Model.clsdocgendata docgendata = new Model.clsdocgendata(); @@ -124,6 +125,7 @@ namespace API_NetFramework.Controllers dokdata.Ersteller = docgendata.ersteller; dokdata.DokumentDatum = docgendata.dokumentdatum; dokdata.Bezeichnung = docgendata.bezeichnung; + if (PrintLogo == "Yes") { dokdata.PrintLogo=true; }else { dokdata.PrintLogo=false; } if (docgendata.erstellungsart == Erstellungsart.DokumentAlsPDF) { dokdata.Result_as_PDF = "True"; } else { dokdata.Result_as_PDF = "False"; } if (docgendata.digitaleunterschrift == true) { dokdata.As_Faksimile = "True"; } else { dokdata.As_Faksimile = "False"; } @@ -163,6 +165,10 @@ namespace API_NetFramework.Controllers case "formohneunterschrift": if (ParamValue != "Yes" && ParamValue != "No" && ParamValue != "") { return false; }; break; + case "printlogo": + if (ParamValue != "Yes" && ParamValue != "No" && ParamValue != "") { return false; }; + break; + default: return false; break; diff --git a/API_NetFramework/bin/DOCGEN.dll b/API_NetFramework/bin/DOCGEN.dll index 4639a6b4..95ae0f91 100644 Binary files a/API_NetFramework/bin/DOCGEN.dll and b/API_NetFramework/bin/DOCGEN.dll differ diff --git a/API_NetFramework/bin/DOCGEN.pdb b/API_NetFramework/bin/DOCGEN.pdb index 72b3cd12..33fb05e7 100644 Binary files a/API_NetFramework/bin/DOCGEN.pdb and b/API_NetFramework/bin/DOCGEN.pdb differ diff --git a/API_NetFramework/bin/EDOKAAPI_NetFramework.dll b/API_NetFramework/bin/EDOKAAPI_NetFramework.dll index 718d1d29..9fd77c48 100644 Binary files a/API_NetFramework/bin/EDOKAAPI_NetFramework.dll and b/API_NetFramework/bin/EDOKAAPI_NetFramework.dll differ diff --git a/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb b/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb index bc868d4e..910bb2b5 100644 Binary files a/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb and b/API_NetFramework/bin/EDOKAAPI_NetFramework.pdb differ diff --git a/API_NetFramework/bin/Model.dll b/API_NetFramework/bin/Model.dll index da703637..6eb2010c 100644 Binary files a/API_NetFramework/bin/Model.dll and b/API_NetFramework/bin/Model.dll differ diff --git a/API_NetFramework/bin/Model.pdb b/API_NetFramework/bin/Model.pdb index 8e9c0b4d..7d29c933 100644 Binary files a/API_NetFramework/bin/Model.pdb and b/API_NetFramework/bin/Model.pdb differ diff --git a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache index c7ba8572..53a43cb5 100644 Binary files a/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache and b/API_NetFramework/obj/Debug/API_NetFramework.csproj.AssemblyReference.cache differ diff --git a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll b/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll index 718d1d29..9fd77c48 100644 Binary files a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll and b/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.dll differ diff --git a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb b/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb index bc868d4e..910bb2b5 100644 Binary files a/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb and b/API_NetFramework/obj/Debug/EDOKAAPI_NetFramework.pdb differ diff --git a/Client/UIControls/Administrator/Dokumenttyp.Designer.cs b/Client/UIControls/Administrator/Dokumenttyp.Designer.cs index fa706c61..df6a14d9 100644 --- a/Client/UIControls/Administrator/Dokumenttyp.Designer.cs +++ b/Client/UIControls/Administrator/Dokumenttyp.Designer.cs @@ -41,7 +41,10 @@ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Dokumenttyp)); this.tabControlAdv1 = new Syncfusion.Windows.Forms.Tools.TabControlAdv(); this.tabPageAdv1 = new Syncfusion.Windows.Forms.Tools.TabPageAdv(); + this.toolStrip2 = new System.Windows.Forms.ToolStrip(); + this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); this.GrpUnterschrifte = new System.Windows.Forms.GroupBox(); + this.cbUnterschriftpruefung = new System.Windows.Forms.CheckBox(); this.lblStandard = new System.Windows.Forms.Label(); this.lbUnterschriftStandard = new System.Windows.Forms.ListBox(); this.cbUnterschriftrechts = new System.Windows.Forms.CheckBox(); @@ -49,18 +52,17 @@ this.cbDigitaleUnterschrift = new System.Windows.Forms.CheckBox(); this.cbUnterschriftlinks = new System.Windows.Forms.CheckBox(); this.GrpBewilligung = new System.Windows.Forms.GroupBox(); - this.chkBewilligungFaksimileUnterschriften = new System.Windows.Forms.CheckBox(); this.chkBewilliigungZwingend = new System.Windows.Forms.CheckBox(); this.groupBox4 = new System.Windows.Forms.GroupBox(); - this.checkBox1 = new System.Windows.Forms.CheckBox(); + this.cbbearbeitungzwingend = new System.Windows.Forms.CheckBox(); this.cbPDFDirekteArchivierung = new System.Windows.Forms.CheckBox(); this.cbPDFDokument = new System.Windows.Forms.CheckBox(); this.cbOfficeDokument = new System.Windows.Forms.CheckBox(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.TreeDokumentArt = new Syncfusion.Windows.Forms.Tools.TreeViewAdv(); this.GroupBox2 = new System.Windows.Forms.GroupBox(); - this.checkBox3 = new System.Windows.Forms.CheckBox(); - this.vbDokumenterstellungPerson = new System.Windows.Forms.RadioButton(); + this.cbaktiv = new System.Windows.Forms.CheckBox(); + this.rbDokumenterstellungPerson = new System.Windows.Forms.RadioButton(); this.rbDokumenterstellungBP = new System.Windows.Forms.RadioButton(); this.cbAnzeigeVorlagenauswahl = new System.Windows.Forms.CheckBox(); this.cbbezeichnungmutierbar = new System.Windows.Forms.CheckBox(); @@ -81,6 +83,8 @@ this.tabPageAdv2 = new Syncfusion.Windows.Forms.Tools.TabPageAdv(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.sfDataGrid1 = new Syncfusion.WinForms.DataGrid.SfDataGrid(); + this.toolStrip1 = new System.Windows.Forms.ToolStrip(); + this.toolStripButton2 = new System.Windows.Forms.ToolStripButton(); this.grpVorlagenfeld = new System.Windows.Forms.GroupBox(); this.lblFeldregel = new System.Windows.Forms.TextBox(); this.txtTechbezeichnung = new System.Windows.Forms.TextBox(); @@ -115,13 +119,10 @@ this.lblfeldregeliddesc = new System.Windows.Forms.Label(); this.lblID = new System.Windows.Forms.Label(); this.lbliddesc = new System.Windows.Forms.Label(); - this.toolStrip2 = new System.Windows.Forms.ToolStrip(); - this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); - this.toolStrip1 = new System.Windows.Forms.ToolStrip(); - this.toolStripButton2 = new System.Windows.Forms.ToolStripButton(); ((System.ComponentModel.ISupportInitialize)(this.tabControlAdv1)).BeginInit(); this.tabControlAdv1.SuspendLayout(); this.tabPageAdv1.SuspendLayout(); + this.toolStrip2.SuspendLayout(); this.GrpUnterschrifte.SuspendLayout(); this.GrpBewilligung.SuspendLayout(); this.groupBox4.SuspendLayout(); @@ -138,9 +139,8 @@ this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit(); - this.grpVorlagenfeld.SuspendLayout(); - this.toolStrip2.SuspendLayout(); this.toolStrip1.SuspendLayout(); + this.grpVorlagenfeld.SuspendLayout(); this.SuspendLayout(); // // tabControlAdv1 @@ -173,8 +173,31 @@ this.tabPageAdv1.Text = "Allgemein"; this.tabPageAdv1.ThemesEnabled = false; // + // toolStrip2 + // + this.toolStrip2.AutoSize = false; + this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripButton1}); + this.toolStrip2.Location = new System.Drawing.Point(0, 0); + this.toolStrip2.Name = "toolStrip2"; + this.toolStrip2.Size = new System.Drawing.Size(1283, 42); + this.toolStrip2.TabIndex = 27; + this.toolStrip2.Text = "toolStrip2"; + // + // toolStripButton1 + // + this.toolStripButton1.AutoSize = false; + this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.toolStripButton1.Image = global::OnDoc.Properties.Resources.save_32x32_32; + this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton1.Name = "toolStripButton1"; + this.toolStripButton1.Size = new System.Drawing.Size(32, 32); + this.toolStripButton1.Text = "toolStripButton1"; + this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click); + // // GrpUnterschrifte // + this.GrpUnterschrifte.Controls.Add(this.cbUnterschriftpruefung); this.GrpUnterschrifte.Controls.Add(this.lblStandard); this.GrpUnterschrifte.Controls.Add(this.lbUnterschriftStandard); this.GrpUnterschrifte.Controls.Add(this.cbUnterschriftrechts); @@ -183,15 +206,25 @@ this.GrpUnterschrifte.Controls.Add(this.cbUnterschriftlinks); this.GrpUnterschrifte.Location = new System.Drawing.Point(13, 347); this.GrpUnterschrifte.Name = "GrpUnterschrifte"; - this.GrpUnterschrifte.Size = new System.Drawing.Size(488, 100); + this.GrpUnterschrifte.Size = new System.Drawing.Size(488, 128); this.GrpUnterschrifte.TabIndex = 26; this.GrpUnterschrifte.TabStop = false; this.GrpUnterschrifte.Text = "Unterschriften"; // + // cbUnterschriftpruefung + // + this.cbUnterschriftpruefung.AutoSize = true; + this.cbUnterschriftpruefung.Location = new System.Drawing.Point(15, 105); + this.cbUnterschriftpruefung.Name = "cbUnterschriftpruefung"; + this.cbUnterschriftpruefung.Size = new System.Drawing.Size(176, 17); + this.cbUnterschriftpruefung.TabIndex = 1; + this.cbUnterschriftpruefung.Text = "Unterschriftenprüfung zwingend"; + this.cbUnterschriftpruefung.UseVisualStyleBackColor = true; + // // lblStandard // this.lblStandard.AutoSize = true; - this.lblStandard.Location = new System.Drawing.Point(352, 28); + this.lblStandard.Location = new System.Drawing.Point(336, 28); this.lblStandard.Name = "lblStandard"; this.lblStandard.Size = new System.Drawing.Size(50, 13); this.lblStandard.TabIndex = 26; @@ -204,16 +237,16 @@ "Unterschriften", "Faksimle Unterschriften", "Formular ohne Unterschrift"}); - this.lbUnterschriftStandard.Location = new System.Drawing.Point(352, 49); + this.lbUnterschriftStandard.Location = new System.Drawing.Point(339, 49); this.lbUnterschriftStandard.Name = "lbUnterschriftStandard"; - this.lbUnterschriftStandard.Size = new System.Drawing.Size(120, 43); + this.lbUnterschriftStandard.Size = new System.Drawing.Size(133, 43); this.lbUnterschriftStandard.TabIndex = 25; // // cbUnterschriftrechts // this.cbUnterschriftrechts.Location = new System.Drawing.Point(130, 28); this.cbUnterschriftrechts.Name = "cbUnterschriftrechts"; - this.cbUnterschriftrechts.Size = new System.Drawing.Size(216, 24); + this.cbUnterschriftrechts.Size = new System.Drawing.Size(114, 24); this.cbUnterschriftrechts.TabIndex = 6; this.cbUnterschriftrechts.Text = "Unterschrift rechts"; // @@ -237,30 +270,20 @@ // this.cbUnterschriftlinks.Location = new System.Drawing.Point(15, 28); this.cbUnterschriftlinks.Name = "cbUnterschriftlinks"; - this.cbUnterschriftlinks.Size = new System.Drawing.Size(216, 24); + this.cbUnterschriftlinks.Size = new System.Drawing.Size(119, 24); this.cbUnterschriftlinks.TabIndex = 5; this.cbUnterschriftlinks.Text = "Unterschrift links"; // // GrpBewilligung // - this.GrpBewilligung.Controls.Add(this.chkBewilligungFaksimileUnterschriften); this.GrpBewilligung.Controls.Add(this.chkBewilliigungZwingend); - this.GrpBewilligung.Location = new System.Drawing.Point(13, 453); + this.GrpBewilligung.Location = new System.Drawing.Point(13, 481); this.GrpBewilligung.Name = "GrpBewilligung"; - this.GrpBewilligung.Size = new System.Drawing.Size(488, 71); + this.GrpBewilligung.Size = new System.Drawing.Size(488, 43); this.GrpBewilligung.TabIndex = 25; this.GrpBewilligung.TabStop = false; - this.GrpBewilligung.Text = "Bewilligung"; - // - // chkBewilligungFaksimileUnterschriften - // - this.chkBewilligungFaksimileUnterschriften.AutoSize = true; - this.chkBewilligungFaksimileUnterschriften.Location = new System.Drawing.Point(19, 43); - this.chkBewilligungFaksimileUnterschriften.Name = "chkBewilligungFaksimileUnterschriften"; - this.chkBewilligungFaksimileUnterschriften.Size = new System.Drawing.Size(191, 17); - this.chkBewilligungFaksimileUnterschriften.TabIndex = 1; - this.chkBewilligungFaksimileUnterschriften.Text = "Bewilligung faksimile Unterschriften"; - this.chkBewilligungFaksimileUnterschriften.UseVisualStyleBackColor = true; + this.GrpBewilligung.Text = "Unterschriftenprüfung"; + this.GrpBewilligung.Visible = false; // // chkBewilliigungZwingend // @@ -274,7 +297,7 @@ // // groupBox4 // - this.groupBox4.Controls.Add(this.checkBox1); + this.groupBox4.Controls.Add(this.cbbearbeitungzwingend); this.groupBox4.Controls.Add(this.cbPDFDirekteArchivierung); this.groupBox4.Controls.Add(this.cbPDFDokument); this.groupBox4.Controls.Add(this.cbOfficeDokument); @@ -285,19 +308,17 @@ this.groupBox4.TabStop = false; this.groupBox4.Text = "Dokument-Produktion"; // - // checkBox1 + // cbbearbeitungzwingend // - this.checkBox1.Enabled = false; - this.checkBox1.Location = new System.Drawing.Point(259, 19); - this.checkBox1.Name = "checkBox1"; - this.checkBox1.Size = new System.Drawing.Size(221, 24); - this.checkBox1.TabIndex = 9; - this.checkBox1.Text = "Bearbeitung zwingend"; - this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); + this.cbbearbeitungzwingend.Location = new System.Drawing.Point(259, 19); + this.cbbearbeitungzwingend.Name = "cbbearbeitungzwingend"; + this.cbbearbeitungzwingend.Size = new System.Drawing.Size(221, 24); + this.cbbearbeitungzwingend.TabIndex = 9; + this.cbbearbeitungzwingend.Text = "Bearbeitung zwingend"; + this.cbbearbeitungzwingend.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); // // cbPDFDirekteArchivierung // - this.cbPDFDirekteArchivierung.Enabled = false; this.cbPDFDirekteArchivierung.Location = new System.Drawing.Point(16, 59); this.cbPDFDirekteArchivierung.Name = "cbPDFDirekteArchivierung"; this.cbPDFDirekteArchivierung.Size = new System.Drawing.Size(280, 24); @@ -307,7 +328,6 @@ // // cbPDFDokument // - this.cbPDFDokument.Enabled = false; this.cbPDFDokument.Location = new System.Drawing.Point(16, 40); this.cbPDFDokument.Name = "cbPDFDokument"; this.cbPDFDokument.Size = new System.Drawing.Size(280, 24); @@ -482,8 +502,8 @@ // // GroupBox2 // - this.GroupBox2.Controls.Add(this.checkBox3); - this.GroupBox2.Controls.Add(this.vbDokumenterstellungPerson); + this.GroupBox2.Controls.Add(this.cbaktiv); + this.GroupBox2.Controls.Add(this.rbDokumenterstellungPerson); this.GroupBox2.Controls.Add(this.rbDokumenterstellungBP); this.GroupBox2.Controls.Add(this.cbAnzeigeVorlagenauswahl); this.GroupBox2.Controls.Add(this.cbbezeichnungmutierbar); @@ -495,23 +515,23 @@ this.GroupBox2.TabStop = false; this.GroupBox2.Text = "Diverses"; // - // checkBox3 + // cbaktiv // - this.checkBox3.Location = new System.Drawing.Point(291, 78); - this.checkBox3.Name = "checkBox3"; - this.checkBox3.Size = new System.Drawing.Size(189, 24); - this.checkBox3.TabIndex = 25; - this.checkBox3.Text = "Aktiv"; + this.cbaktiv.Location = new System.Drawing.Point(291, 78); + this.cbaktiv.Name = "cbaktiv"; + this.cbaktiv.Size = new System.Drawing.Size(189, 24); + this.cbaktiv.TabIndex = 25; + this.cbaktiv.Text = "Aktiv"; // - // vbDokumenterstellungPerson + // rbDokumenterstellungPerson // - this.vbDokumenterstellungPerson.AutoSize = true; - this.vbDokumenterstellungPerson.Location = new System.Drawing.Point(293, 32); - this.vbDokumenterstellungPerson.Name = "vbDokumenterstellungPerson"; - this.vbDokumenterstellungPerson.Size = new System.Drawing.Size(155, 17); - this.vbDokumenterstellungPerson.TabIndex = 22; - this.vbDokumenterstellungPerson.Text = "Dokumenterstellung Person"; - this.vbDokumenterstellungPerson.UseVisualStyleBackColor = true; + this.rbDokumenterstellungPerson.AutoSize = true; + this.rbDokumenterstellungPerson.Location = new System.Drawing.Point(293, 32); + this.rbDokumenterstellungPerson.Name = "rbDokumenterstellungPerson"; + this.rbDokumenterstellungPerson.Size = new System.Drawing.Size(155, 17); + this.rbDokumenterstellungPerson.TabIndex = 22; + this.rbDokumenterstellungPerson.Text = "Dokumenterstellung Person"; + this.rbDokumenterstellungPerson.UseVisualStyleBackColor = true; // // rbDokumenterstellungBP // @@ -593,6 +613,7 @@ // // cbboxofficevorlage // + this.cbboxofficevorlage.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; this.cbboxofficevorlage.DropDownPosition = Syncfusion.WinForms.Core.Enums.PopupRelativeAlignment.Center; this.cbboxofficevorlage.Location = new System.Drawing.Point(120, 13); this.cbboxofficevorlage.Name = "cbboxofficevorlage"; @@ -718,6 +739,27 @@ this.sfDataGrid1.TabIndex = 1; this.sfDataGrid1.CellClick += new Syncfusion.WinForms.DataGrid.Events.CellClickEventHandler(this.sfDataGrid1_CellClick); // + // toolStrip1 + // + this.toolStrip1.AutoSize = false; + this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolStripButton2}); + this.toolStrip1.Location = new System.Drawing.Point(0, 0); + this.toolStrip1.Name = "toolStrip1"; + this.toolStrip1.Size = new System.Drawing.Size(930, 42); + this.toolStrip1.TabIndex = 28; + this.toolStrip1.Text = "toolStrip1"; + // + // toolStripButton2 + // + this.toolStripButton2.AutoSize = false; + this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; + this.toolStripButton2.Image = global::OnDoc.Properties.Resources.save_32x32_32; + this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton2.Name = "toolStripButton2"; + this.toolStripButton2.Size = new System.Drawing.Size(32, 32); + this.toolStripButton2.Text = "toolStripButton1"; + // // grpVorlagenfeld // this.grpVorlagenfeld.Controls.Add(this.lblFeldregel); @@ -1049,48 +1091,6 @@ this.lbliddesc.TabIndex = 0; this.lbliddesc.Text = "ID"; // - // toolStrip2 - // - this.toolStrip2.AutoSize = false; - this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripButton1}); - this.toolStrip2.Location = new System.Drawing.Point(0, 0); - this.toolStrip2.Name = "toolStrip2"; - this.toolStrip2.Size = new System.Drawing.Size(1283, 42); - this.toolStrip2.TabIndex = 27; - this.toolStrip2.Text = "toolStrip2"; - // - // toolStripButton1 - // - this.toolStripButton1.AutoSize = false; - this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButton1.Image = global::OnDoc.Properties.Resources.save_32x32_32; - this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton1.Name = "toolStripButton1"; - this.toolStripButton1.Size = new System.Drawing.Size(32, 32); - this.toolStripButton1.Text = "toolStripButton1"; - // - // toolStrip1 - // - this.toolStrip1.AutoSize = false; - this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.toolStripButton2}); - this.toolStrip1.Location = new System.Drawing.Point(0, 0); - this.toolStrip1.Name = "toolStrip1"; - this.toolStrip1.Size = new System.Drawing.Size(930, 42); - this.toolStrip1.TabIndex = 28; - this.toolStrip1.Text = "toolStrip1"; - // - // toolStripButton2 - // - this.toolStripButton2.AutoSize = false; - this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.toolStripButton2.Image = global::OnDoc.Properties.Resources.save_32x32_32; - this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta; - this.toolStripButton2.Name = "toolStripButton2"; - this.toolStripButton2.Size = new System.Drawing.Size(32, 32); - this.toolStripButton2.Text = "toolStripButton1"; - // // Dokumenttyp // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -1106,6 +1106,8 @@ ((System.ComponentModel.ISupportInitialize)(this.tabControlAdv1)).EndInit(); this.tabControlAdv1.ResumeLayout(false); this.tabPageAdv1.ResumeLayout(false); + this.toolStrip2.ResumeLayout(false); + this.toolStrip2.PerformLayout(); this.GrpUnterschrifte.ResumeLayout(false); this.GrpUnterschrifte.PerformLayout(); this.GrpBewilligung.ResumeLayout(false); @@ -1126,12 +1128,10 @@ ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).EndInit(); - this.grpVorlagenfeld.ResumeLayout(false); - this.grpVorlagenfeld.PerformLayout(); - this.toolStrip2.ResumeLayout(false); - this.toolStrip2.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); + this.grpVorlagenfeld.ResumeLayout(false); + this.grpVorlagenfeld.PerformLayout(); this.ResumeLayout(false); } @@ -1156,7 +1156,7 @@ internal System.Windows.Forms.TextBox TxTBezeichnung; internal System.Windows.Forms.Label Label1; private System.Windows.Forms.GroupBox groupBox3; - private System.Windows.Forms.RadioButton vbDokumenterstellungPerson; + private System.Windows.Forms.RadioButton rbDokumenterstellungPerson; private System.Windows.Forms.RadioButton rbDokumenterstellungBP; internal System.Windows.Forms.CheckBox cbAnzeigeVorlagenauswahl; private Syncfusion.Windows.Forms.Tools.TabPageAdv tabPageAdv2; @@ -1167,14 +1167,14 @@ internal System.Windows.Forms.CheckBox cbDigitaleUnterschrift; internal System.Windows.Forms.CheckBox cbFormularOhneUnterschrift; internal System.Windows.Forms.CheckBox cbPDFDirekteArchivierung; - internal System.Windows.Forms.CheckBox checkBox3; + internal System.Windows.Forms.CheckBox cbaktiv; private Syncfusion.WinForms.ListView.SfComboBox cbboxofficevorlage; private Syncfusion.WinForms.ListView.SfComboBox cbboxOwner; - internal System.Windows.Forms.CheckBox checkBox1; + internal System.Windows.Forms.CheckBox cbbearbeitungzwingend; private Syncfusion.WinForms.ListView.SfComboBox cbboxFachverantwortung; private System.Windows.Forms.GroupBox GrpUnterschrifte; private System.Windows.Forms.GroupBox GrpBewilligung; - private System.Windows.Forms.CheckBox chkBewilligungFaksimileUnterschriften; + private System.Windows.Forms.CheckBox cbUnterschriftpruefung; private System.Windows.Forms.CheckBox chkBewilliigungZwingend; private System.Windows.Forms.Label lblStandard; private System.Windows.Forms.ListBox lbUnterschriftStandard; diff --git a/Client/UIControls/Administrator/Dokumenttyp.cs b/Client/UIControls/Administrator/Dokumenttyp.cs index 0a0c2ed3..d9441704 100644 --- a/Client/UIControls/Administrator/Dokumenttyp.cs +++ b/Client/UIControls/Administrator/Dokumenttyp.cs @@ -12,15 +12,16 @@ using Syncfusion.WinForms.Controls; using Syncfusion.WinForms.Controls.Styles; using Database; using Helper; +using System.Windows.Forms.VisualStyles; namespace OnDoc.UIControls.Administrator { public partial class Dokumenttyp : SfForm { - private int dokumenttypnr = 0; + private int dokumenttypnr = 0; System.Data.DataRow Origin; - - + + public Dokumenttyp() { InitializeComponent(); @@ -29,34 +30,79 @@ namespace OnDoc.UIControls.Administrator public Dokumenttyp(int dokumenttypnr) { InitializeComponent(); - this.dokumenttypnr=dokumenttypnr; + this.dokumenttypnr = dokumenttypnr; } private void Dokumenttyp_Load(object sender, EventArgs e) { DB db = new DB(AppParams.connectionstring); - db.Get_Tabledata("Select office_vorlagenr, bezeichnung from office_vorlage", false,true); + db.Get_Tabledata("Select office_vorlagenr, bezeichnung from office_vorlage", false, true); cbboxofficevorlage.DataSource = db.dsdaten.Tables[0]; cbboxofficevorlage.DisplayMember = "Bezeichnung"; cbboxofficevorlage.ValueMember = "office_vorlagenr"; + db.Get_Tabledata("select mitarbeiternr as id, name+' '+vorname+', '+tgnummer as MA from mitarbeiter where aktiv=1 order by name", false, true); cbboxFachverantwortung.DataSource = db.dsdaten.Tables[0]; cbboxFachverantwortung.DisplayMember = "MA"; cbboxFachverantwortung.ValueMember = "id"; - cbboxOwner.DataSource=db.dsdaten.Tables[0]; + cbboxOwner.DataSource = db.dsdaten.Tables[0]; cbboxOwner.DisplayMember = "MA"; cbboxOwner.ValueMember = "id"; - db.Get_Tabledata("Select * from dokumenttyp where dokumenttypnr = "+dokumenttypnr.ToString(),false,true); + int erstellungstyp = 0; + db.Get_Tabledata("Select * from Dokumenttyp_BP_Person_Erstellung where dokumenttypnr=" + dokumenttypnr.ToString(), false, true); + if (db.dsdaten.Tables[0].Rows.Count != 0) + { + erstellungstyp = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0][0]); + } + + db.Get_Tabledata("Select * from dokumenttyp where dokumenttypnr = " + dokumenttypnr.ToString(), false, true); DataRow r = db.dsdaten.Tables[0].Rows[0]; this.TxTBezeichnung.Text = r["bezeichnung"].ToString(); - this.TxTBeschreibung.Text = r["beschreibung"].ToString() ; - - db.Get_Tabledata("Select * from View_Vorlagenfelder_Relaunch where doktypid=" + dokumenttypnr.ToString(),false,true); - this.sfDataGrid1.DataSource=db.dsdaten.Tables[0]; + this.TxTBeschreibung.Text = r["beschreibung"].ToString(); + this.cbaktiv.Checked = Convert.ToBoolean(r["aktiv"]); + this.cbboxofficevorlage.SelectedValue = r["office_vorlagenr"].ToString(); + this.cbboxFachverantwortung.SelectedValue = r["fachverantwortung"].ToString(); + this.cbboxOwner.SelectedValue = r["owner"].ToString(); + this.cbVertrag.Checked = Convert.ToBoolean(r["vertrag"]) == true; + this.cbbezeichnungmutierbar.Checked = Convert.ToBoolean(r["bezeichnungmut"]) == true; + this.cbAnzeigeVorlagenauswahl.Checked = Convert.ToBoolean(r["AnzeigeZurDokumenterstellung"]) == true; + this.rbDokumenterstellungBP.Checked = erstellungstyp == 1; + this.rbDokumenterstellungPerson.Checked = erstellungstyp == 2; + if (rbDokumenterstellungPerson.Checked == false && rbDokumenterstellungBP.Checked == false) + { + rbDokumenterstellungBP.Checked = true; + } + this.cbUnterschriftlinks.Checked = Convert.ToBoolean(r["unterschrift_links"]) == true; + this.cbUnterschriftrechts.Checked = Convert.ToBoolean(r["unterschrift_rechts"]) == true; + this.cbDigitaleUnterschrift.Checked = Convert.ToBoolean(r["Unterschrift_Faksimile"]) == true; + this.cbFormularOhneUnterschrift.Checked = Convert.ToBoolean(r["Unterschrift_ohne"]) == true; + this.cbUnterschriftpruefung.Checked = Convert.ToBoolean(r["Unterschrift_Pruefung"]) == true; + this.lbUnterschriftStandard.SelectedIndex = Convert.ToInt32(r["unterschrift_standard"]); + switch (Convert.ToInt32(r["genresultat_type"])) + { + case 1: + cbOfficeDokument.Checked = true; + break; + case 2: + cbPDFDokument.Checked = true; + break; + case 3: + cbPDFDirekteArchivierung.Checked = true; + break; + case 4: + cbbearbeitungzwingend.Checked = true; + break; + default: + cbOfficeDokument.Checked = true; + break; + } + + db.Get_Tabledata("Select * from View_Vorlagenfelder_Relaunch where doktypid=" + dokumenttypnr.ToString(), false, true); + this.sfDataGrid1.DataSource = db.dsdaten.Tables[0]; } @@ -92,7 +138,7 @@ namespace OnDoc.UIControls.Administrator private void Update_Vorlagenfeld(DataRow dr) { //Origin = dr; - lblID.Text=dr["ID"].ToString(); + lblID.Text = dr["ID"].ToString(); lblfeldregelid.Text = dr["Feldregelid"].ToString(); lblFeldregel.Text = dr["feldregel"].ToString(); @@ -112,14 +158,14 @@ namespace OnDoc.UIControls.Administrator if (Convert.ToBoolean(dr["ui"]) == true) { chkui.Checked = true; - txtSort.Enabled= true; - txtUIDescription.Enabled= true; + txtSort.Enabled = true; + txtUIDescription.Enabled = true; txtTechbezeichnung.Enabled = true; } else { chkui.Checked = false; - chkui.Checked = false; + chkui.Checked = false; txtSort.Enabled = false; txtUIDescription.Enabled = false; txtTechbezeichnung.Enabled = false; @@ -133,9 +179,9 @@ namespace OnDoc.UIControls.Administrator private void txtSort_Leave(object sender, EventArgs e) { - TextBox tmptxtbox = new TextBox(); + TextBox tmptxtbox = new TextBox(); tmptxtbox = sender as TextBox; - Origin["BTM"]=tmptxtbox.Text; + Origin["BTM"] = tmptxtbox.Text; var record = sfDataGrid1.View.Records.GetItemAt(sfDataGrid1.SelectedIndex); @@ -144,5 +190,68 @@ namespace OnDoc.UIControls.Administrator Origin.AcceptChanges(); sfDataGrid1.Update(); } + + private void toolStripButton1_Click(object sender, EventArgs e) + { + DB db = new DB(AppParams.connectionstring); + db.Get_Tabledata_for_Update("Select * from dokumenttyp where dokumenttypnr=" + dokumenttypnr.ToString(), false, true); + DataRow r = db.daten.Tables[0].Rows[0]; + r["bezeichnung"] = this.TxTBezeichnung.Text; + r["beschreibung"] = this.TxTBeschreibung.Text; + r["office_vorlagenr"] = this.cbboxofficevorlage.SelectedValue; + r["fachverantwortung"] = this.cbboxFachverantwortung.SelectedValue; + r["owner"] = this.cbboxOwner.SelectedValue; + r["vertrag"] = this.cbVertrag.Checked; + r["bezeichnungmut"] = this.cbbezeichnungmutierbar.Checked; + r["AnzeigeZurDokumenterstellung"] = this.cbAnzeigeVorlagenauswahl.Checked; + r["unterschrift_links"] = this.cbUnterschriftlinks.Checked; + r["unterschrift_rechts"] = this.cbUnterschriftrechts.Checked; + r["Unterschrift_Faksimile"] = this.cbDigitaleUnterschrift.Checked; + r["Unterschrift_ohne"] = this.cbFormularOhneUnterschrift.Checked; + r["Unterschrift_Pruefung"] = this.cbUnterschriftpruefung.Checked; + r["unterschrift_standard"]=this.lbUnterschriftStandard.SelectedIndex; + r["aktiv"] = this.cbaktiv.Checked; + r["mutierer"] = AppParams.CurrentMitarbieter; + r["mutiert_am"]=DateTime.Now; + + + + + + + + + + + + + + + + if (cbOfficeDokument.Checked) { r["genresultat_type"] = 1; } + if (cbPDFDokument.Checked) { r["genresultat_type"] = 2; } + if (cbPDFDirekteArchivierung.Checked) { r["genresultat_type"] = 3; } + if (cbbearbeitungzwingend.Checked) { r["genresultat_type"] = 4; } + + + + + db.Update_Data(); + db.daten.Tables.Clear(); + db.Get_Tabledata_for_Update("Select * from Dokumenttyp_BP_Person_Erstellung where dokumenttypnr=" + dokumenttypnr.ToString(), false, true); + if (db.daten.Tables[0].Rows.Count > 0) + { + if (rbDokumenterstellungBP.Checked) { db.daten.Tables[0].Rows[0][1] = 1; } else { db.daten.Tables[0].Rows[0][1] = 2; } + } + else + { + DataRow dr = db.daten.Tables[0].NewRow(); + dr[0] = dokumenttypnr; + if (rbDokumenterstellungBP.Checked) {dr[1] = 1; } else { dr[1] = 2; } + db.daten.Tables[0].Rows.Add(dr); + } + db.Update_Data(); + ToastMessage.ShowToast("Speichern", "Dokumenttyp erfolgreich gespeichert"); + } } } diff --git a/Client/UIControls/Administrator/DokumenttypListe.cs b/Client/UIControls/Administrator/DokumenttypListe.cs index 1ae7b0ad..7dfd691b 100644 --- a/Client/UIControls/Administrator/DokumenttypListe.cs +++ b/Client/UIControls/Administrator/DokumenttypListe.cs @@ -49,7 +49,7 @@ namespace OnDoc.UIControls.Administrator var dataRow = (e.DataRow.RowData as DataRowView).Row; dokumenttypnr = dataRow["id"].ToString(); Dokumenttyp dt = new Dokumenttyp(Convert.ToInt32(dokumenttypnr)); - dt.ShowDialog(); + dt.Show(); } catch { diff --git a/Client/UIControls/UCAllgemeineDokumentParam.Designer.cs b/Client/UIControls/UCAllgemeineDokumentParam.Designer.cs index 0795d8b3..13103f69 100644 --- a/Client/UIControls/UCAllgemeineDokumentParam.Designer.cs +++ b/Client/UIControls/UCAllgemeineDokumentParam.Designer.cs @@ -54,7 +54,7 @@ this.cbboxteam = new Syncfusion.WinForms.ListView.SfComboBox(); this.GrpUnterschrift = new System.Windows.Forms.GroupBox(); this.cbformularohneunterschrfit = new System.Windows.Forms.CheckBox(); - this.cbdigitaleunterschrfiten = new System.Windows.Forms.CheckBox(); + this.cbfaksimile = new System.Windows.Forms.CheckBox(); this.cbboxunterschriftrechts = new Syncfusion.WinForms.ListView.SfComboBox(); this.cbboxunterschriftlinks = new Syncfusion.WinForms.ListView.SfComboBox(); this.lblUnterschriftrechts = new System.Windows.Forms.Label(); @@ -353,7 +353,7 @@ // GrpUnterschrift // this.GrpUnterschrift.Controls.Add(this.cbformularohneunterschrfit); - this.GrpUnterschrift.Controls.Add(this.cbdigitaleunterschrfiten); + this.GrpUnterschrift.Controls.Add(this.cbfaksimile); this.GrpUnterschrift.Controls.Add(this.cbboxunterschriftrechts); this.GrpUnterschrift.Controls.Add(this.cbboxunterschriftlinks); this.GrpUnterschrift.Controls.Add(this.lblUnterschriftrechts); @@ -376,15 +376,15 @@ this.cbformularohneunterschrfit.Text = "Formular ohne Unterschrift"; this.cbformularohneunterschrfit.UseVisualStyleBackColor = true; // - // cbdigitaleunterschrfiten + // cbfaksimile // - this.cbdigitaleunterschrfiten.AutoSize = true; - this.cbdigitaleunterschrfiten.Location = new System.Drawing.Point(22, 113); - this.cbdigitaleunterschrfiten.Name = "cbdigitaleunterschrfiten"; - this.cbdigitaleunterschrfiten.Size = new System.Drawing.Size(111, 17); - this.cbdigitaleunterschrfiten.TabIndex = 10; - this.cbdigitaleunterschrfiten.Text = "Faksimile Signator"; - this.cbdigitaleunterschrfiten.UseVisualStyleBackColor = true; + this.cbfaksimile.AutoSize = true; + this.cbfaksimile.Location = new System.Drawing.Point(22, 113); + this.cbfaksimile.Name = "cbfaksimile"; + this.cbfaksimile.Size = new System.Drawing.Size(111, 17); + this.cbfaksimile.TabIndex = 10; + this.cbfaksimile.Text = "Faksimile Signatur"; + this.cbfaksimile.UseVisualStyleBackColor = true; // // cbboxunterschriftrechts // @@ -632,7 +632,7 @@ private Syncfusion.WinForms.ListView.SfComboBox cbboxteam; private System.Windows.Forms.GroupBox GrpUnterschrift; private System.Windows.Forms.CheckBox cbformularohneunterschrfit; - private System.Windows.Forms.CheckBox cbdigitaleunterschrfiten; + private System.Windows.Forms.CheckBox cbfaksimile; private Syncfusion.WinForms.ListView.SfComboBox cbboxunterschriftrechts; private Syncfusion.WinForms.ListView.SfComboBox cbboxunterschriftlinks; private System.Windows.Forms.Label lblUnterschriftrechts; diff --git a/Client/UIControls/UCAllgemeineDokumentParam.cs b/Client/UIControls/UCAllgemeineDokumentParam.cs index d42dfa34..110e8796 100644 --- a/Client/UIControls/UCAllgemeineDokumentParam.cs +++ b/Client/UIControls/UCAllgemeineDokumentParam.cs @@ -12,6 +12,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using Database; +using Syncfusion.Pdf.Graphics; namespace OnDoc.UIControls { @@ -73,8 +74,20 @@ namespace OnDoc.UIControls if (dokumenttypnr != 0) { db.Get_Tabledata("Select * from dokumenttyp where dokumenttypnr=" + dokumenttypnr, false, true); - this.txtbezeichnung.Text = db.dsdaten.Tables[0].Rows[0]["Bezeichnung"].ToString(); - } else + System.Data.DataRow dr = db.dsdaten.Tables[0].Rows[0]; + this.txtbezeichnung.Text = dr["Bezeichnung"].ToString(); + this.txtbezeichnung.Enabled = Convert.ToBoolean(dr["bezeichnungmut"]); + this.cbboxunterschriftlinks.Enabled = Convert.ToBoolean(dr["unterschrift_links"]) == true; + this.cbboxunterschriftrechts.Enabled = Convert.ToBoolean(dr["unterschrift_rechts"]) == true; + this.cbformularohneunterschrfit.Enabled=Convert.ToBoolean(dr["unterschrift_ohne"]) == true; + this.cbfaksimile.Enabled = Convert.ToBoolean(dr["unterschrift_faksimile"]) == true; + this.cbfaksimile.Checked = false; + this.cbformularohneunterschrfit.Checked=false; + if (Convert.ToInt32(dr["Unterschrift_Standard"].ToString()) ==1) { cbfaksimile.Checked=true; } + if (Convert.ToInt32(dr["Unterschrift_Standard"].ToString()) == 2) { cbformularohneunterschrfit.Checked = true; } + + } + else { } @@ -213,7 +226,7 @@ namespace OnDoc.UIControls docgendata.dokumenttypnr = dokumenttypnr.ToString(); docgendata.unterschriftLinks = cbboxunterschriftlinks.SelectedValue.ToString(); docgendata.unterschriftRehts = cbboxunterschriftrechts.SelectedValue.ToString(); - if (cbdigitaleunterschrfiten.Checked) { docgendata.digitaleunterschrift = true; } else { docgendata.digitaleunterschrift = false; } + if (cbfaksimile.Checked) { docgendata.digitaleunterschrift = true; } else { docgendata.digitaleunterschrift = false; } if (cbformularohneunterschrfit.Checked) { docgendata.frormularOhneUnterschrift = true; } else { docgendata.frormularOhneUnterschrift = false;} docgendata.verantwortlich = cbboxverantwortlich.SelectedValue.ToString(); docgendata.team = cbboxteam.SelectedValue.ToString(); diff --git a/Client/bin/Debug/DOCGEN.dll b/Client/bin/Debug/DOCGEN.dll index c06924ed..95ae0f91 100644 Binary files a/Client/bin/Debug/DOCGEN.dll and b/Client/bin/Debug/DOCGEN.dll differ diff --git a/Client/bin/Debug/DOCGEN.pdb b/Client/bin/Debug/DOCGEN.pdb index 30752b7c..33fb05e7 100644 Binary files a/Client/bin/Debug/DOCGEN.pdb and b/Client/bin/Debug/DOCGEN.pdb differ diff --git a/Client/bin/Debug/Database.dll b/Client/bin/Debug/Database.dll index 04aad25c..7f165632 100644 Binary files a/Client/bin/Debug/Database.dll and b/Client/bin/Debug/Database.dll differ diff --git a/Client/bin/Debug/Database.pdb b/Client/bin/Debug/Database.pdb index ceaf4135..2222727e 100644 Binary files a/Client/bin/Debug/Database.pdb and b/Client/bin/Debug/Database.pdb differ diff --git a/Client/bin/Debug/Model.dll b/Client/bin/Debug/Model.dll index da703637..6eb2010c 100644 Binary files a/Client/bin/Debug/Model.dll and b/Client/bin/Debug/Model.dll differ diff --git a/Client/bin/Debug/Model.pdb b/Client/bin/Debug/Model.pdb index 8e9c0b4d..7d29c933 100644 Binary files a/Client/bin/Debug/Model.pdb and b/Client/bin/Debug/Model.pdb differ diff --git a/Client/bin/Debug/OnDoc.exe b/Client/bin/Debug/OnDoc.exe index 221f7cff..85fb441c 100644 Binary files a/Client/bin/Debug/OnDoc.exe and b/Client/bin/Debug/OnDoc.exe differ diff --git a/Client/bin/Debug/OnDoc.pdb b/Client/bin/Debug/OnDoc.pdb index 6e3f5626..7ff980d5 100644 Binary files a/Client/bin/Debug/OnDoc.pdb and b/Client/bin/Debug/OnDoc.pdb differ diff --git a/Client/bin/Debug/de-DE/OnDoc.resources.dll b/Client/bin/Debug/de-DE/OnDoc.resources.dll index fc8e647e..a9630f26 100644 Binary files a/Client/bin/Debug/de-DE/OnDoc.resources.dll and b/Client/bin/Debug/de-DE/OnDoc.resources.dll differ diff --git a/Client/bin/Debug/log.txt b/Client/bin/Debug/log.txt index 5e45499d..149d53e2 100644 --- a/Client/bin/Debug/log.txt +++ b/Client/bin/Debug/log.txt @@ -26732,3 +26732,947 @@ 2024-09-09 12:45:47.4224|DEBUG|EDOKA| 2024-09-09 12:45:48.0649|DEBUG|EDOKA| 2024-09-09 12:45:48.5844|DEBUG|EDOKA| +2024-09-10 08:50:22.4989|DEBUG|EDOKA|Start +2024-09-10 08:50:22.5409|DEBUG|EDOKA| +2024-09-10 08:50:22.5409|DEBUG|EDOKA| +2024-09-10 08:50:22.5520|DEBUG|EDOKA| +2024-09-10 08:50:22.5520|DEBUG|EDOKA| +2024-09-10 08:50:22.8627|DEBUG|EDOKA| +2024-09-10 08:50:22.9455|DEBUG|EDOKA|Start - Ende +2024-09-10 08:50:27.3213|DEBUG|EDOKA| +2024-09-10 08:50:41.2296|DEBUG|EDOKA| +2024-09-10 08:50:47.7708|DEBUG|EDOKA| +2024-09-10 08:50:50.7940|DEBUG|EDOKA| +2024-09-10 08:50:54.1401|DEBUG|EDOKA| +2024-09-10 08:50:58.7103|DEBUG|EDOKA| +2024-09-10 08:51:12.9355|DEBUG|EDOKA| +2024-09-10 08:51:13.0582|DEBUG|EDOKA| +2024-09-10 08:51:13.1659|DEBUG|EDOKA| +2024-09-10 08:51:13.3435|DEBUG|EDOKA| +2024-09-10 08:51:13.4761|DEBUG|EDOKA| +2024-09-10 08:51:15.2636|DEBUG|EDOKA| +2024-09-10 08:51:22.9846|DEBUG|EDOKA| +2024-09-10 08:51:26.7644|DEBUG|EDOKA| +2024-09-10 08:51:32.0424|DEBUG|EDOKA| +2024-09-10 08:51:32.0862|DEBUG|EDOKA| +2024-09-10 08:51:35.2307|DEBUG|EDOKA| +2024-09-10 08:51:35.2740|DEBUG|EDOKA| +2024-09-10 08:51:37.1083|DEBUG|EDOKA| +2024-09-10 08:51:48.5757|DEBUG|EDOKA| +2024-09-10 08:51:53.0717|DEBUG|EDOKA| +2024-09-10 08:51:59.3288|DEBUG|EDOKA| +2024-09-10 08:52:04.7653|DEBUG|EDOKA|Start +2024-09-10 08:52:04.8272|DEBUG|EDOKA| +2024-09-10 08:52:04.8342|DEBUG|EDOKA| +2024-09-10 08:52:04.8342|DEBUG|EDOKA| +2024-09-10 08:52:04.8488|DEBUG|EDOKA| +2024-09-10 08:52:04.8696|DEBUG|EDOKA| +2024-09-10 08:52:04.9341|DEBUG|EDOKA|Start - Ende +2024-09-10 08:52:20.7526|DEBUG|EDOKA| +2024-09-10 08:52:36.8697|DEBUG|EDOKA| +2024-09-10 08:52:39.6634|DEBUG|EDOKA| +2024-09-10 08:52:47.5399|DEBUG|EDOKA| +2024-09-10 08:52:51.2719|DEBUG|EDOKA| +2024-09-10 08:52:53.1278|DEBUG|EDOKA| +2024-09-10 08:53:04.9371|DEBUG|EDOKA| +2024-09-10 08:53:25.2366|DEBUG|EDOKA| +2024-09-10 08:53:26.8104|DEBUG|EDOKA| +2024-09-10 08:53:28.2139|DEBUG|EDOKA| +2024-09-10 08:54:04.9327|DEBUG|EDOKA| +2024-09-10 08:55:04.9343|DEBUG|EDOKA| +2024-09-10 08:56:04.9403|DEBUG|EDOKA| +2024-09-10 13:04:03.0903|DEBUG|EDOKA|Start +2024-09-10 13:04:03.1619|DEBUG|EDOKA| +2024-09-10 13:04:03.1749|DEBUG|EDOKA| +2024-09-10 13:04:03.1749|DEBUG|EDOKA| +2024-09-10 13:04:03.1749|DEBUG|EDOKA| +2024-09-10 13:04:03.2124|DEBUG|EDOKA| +2024-09-10 13:04:03.2846|DEBUG|EDOKA|Start - Ende +2024-09-10 13:04:06.9553|DEBUG|EDOKA| +2024-09-10 13:04:06.9583|DEBUG|EDOKA| +2024-09-10 13:04:18.5534|DEBUG|EDOKA| +2024-09-10 13:04:18.5534|DEBUG|EDOKA| +2024-09-10 13:04:20.8050|DEBUG|EDOKA| +2024-09-10 13:04:20.8375|DEBUG|EDOKA| +2024-09-10 13:04:20.8930|DEBUG|EDOKA| +2024-09-10 13:04:20.9253|DEBUG|EDOKA| +2024-09-10 13:04:31.4845|DEBUG|EDOKA|Start +2024-09-10 13:04:31.5208|DEBUG|EDOKA| +2024-09-10 13:04:31.5208|DEBUG|EDOKA| +2024-09-10 13:04:31.5208|DEBUG|EDOKA| +2024-09-10 13:04:31.5208|DEBUG|EDOKA| +2024-09-10 13:04:31.5495|DEBUG|EDOKA| +2024-09-10 13:04:31.6174|DEBUG|EDOKA|Start - Ende +2024-09-10 13:04:33.9776|DEBUG|EDOKA| +2024-09-10 13:04:39.1268|DEBUG|EDOKA| +2024-09-10 13:04:39.1622|DEBUG|EDOKA| +2024-09-10 13:04:43.8774|DEBUG|EDOKA| +2024-09-10 13:04:43.9128|DEBUG|EDOKA| +2024-09-10 13:04:47.1798|DEBUG|EDOKA| +2024-09-10 13:04:47.2353|DEBUG|EDOKA| +2024-09-10 13:04:47.2690|DEBUG|EDOKA| +2024-09-10 13:04:47.2992|DEBUG|EDOKA| +2024-09-10 13:04:49.8075|DEBUG|EDOKA| +2024-09-10 13:04:49.8278|DEBUG|EDOKA| +2024-09-10 13:04:52.5100|DEBUG|EDOKA| +2024-09-10 13:04:52.5408|DEBUG|EDOKA| +2024-09-10 13:04:52.5408|DEBUG|EDOKA| +2024-09-10 13:04:52.5408|DEBUG|EDOKA| +2024-09-10 13:04:52.5503|DEBUG|EDOKA| +2024-09-10 13:04:52.6066|DEBUG|EDOKA| +2024-09-10 13:04:54.0937|DEBUG|EDOKA| +2024-09-10 13:04:54.1264|DEBUG|EDOKA| +2024-09-10 13:04:54.1304|DEBUG|EDOKA| +2024-09-10 13:04:54.1750|DEBUG|EDOKA| +2024-09-10 13:04:54.1750|DEBUG|EDOKA| +2024-09-10 13:04:57.7583|DEBUG|EDOKA| +2024-09-10 13:04:57.7713|DEBUG|EDOKA| +2024-09-11 09:32:04.4847|DEBUG|EDOKA|Start +2024-09-11 09:32:04.5243|DEBUG|EDOKA| +2024-09-11 09:32:04.5243|DEBUG|EDOKA| +2024-09-11 09:32:04.5334|DEBUG|EDOKA| +2024-09-11 09:32:04.5334|DEBUG|EDOKA| +2024-09-11 09:32:04.7906|DEBUG|EDOKA| +2024-09-11 09:32:04.8787|DEBUG|EDOKA|Start - Ende +2024-09-11 09:32:14.6902|DEBUG|EDOKA| +2024-09-11 09:32:20.0162|DEBUG|EDOKA| +2024-09-11 09:32:23.3719|DEBUG|EDOKA| +2024-09-11 09:32:43.5433|DEBUG|EDOKA| +2024-09-11 09:32:43.5433|DEBUG|EDOKA| +2024-09-11 09:32:51.8503|DEBUG|EDOKA| +2024-09-11 09:32:51.8503|DEBUG|EDOKA| +2024-09-11 09:32:54.9829|DEBUG|EDOKA| +2024-09-11 09:32:55.0440|DEBUG|EDOKA| +2024-09-11 09:32:55.0737|DEBUG|EDOKA| +2024-09-11 09:32:55.1001|DEBUG|EDOKA| +2024-09-11 09:32:57.8872|DEBUG|EDOKA| +2024-09-11 09:32:57.9048|DEBUG|EDOKA| +2024-09-11 09:32:59.7637|DEBUG|EDOKA| +2024-09-11 09:32:59.7984|DEBUG|EDOKA| +2024-09-11 09:32:59.8065|DEBUG|EDOKA| +2024-09-11 09:32:59.8065|DEBUG|EDOKA| +2024-09-11 09:32:59.8065|DEBUG|EDOKA| +2024-09-11 09:32:59.8620|DEBUG|EDOKA| +2024-09-11 09:33:04.9223|DEBUG|EDOKA| +2024-09-11 09:33:27.7800|DEBUG|EDOKA| +2024-09-11 09:33:27.8042|DEBUG|EDOKA| +2024-09-11 09:33:27.8042|DEBUG|EDOKA| +2024-09-11 09:33:27.8042|DEBUG|EDOKA| +2024-09-11 09:33:27.8042|DEBUG|EDOKA| +2024-09-11 09:33:31.1240|DEBUG|EDOKA| +2024-09-11 09:33:31.1381|DEBUG|EDOKA| +2024-09-11 09:34:04.8920|DEBUG|EDOKA| +2024-09-11 09:34:21.0423|DEBUG|EDOKA| +2024-09-11 09:34:29.0426|DEBUG|EDOKA| +2024-09-11 09:34:29.2354|DEBUG|EDOKA| +2024-09-11 09:34:44.0690|DEBUG|EDOKA| +2024-09-11 09:35:04.8782|DEBUG|EDOKA| +2024-09-11 09:35:58.0172|DEBUG|EDOKA| +2024-09-11 09:36:02.9691|DEBUG|EDOKA| +2024-09-11 09:36:02.9731|DEBUG|EDOKA| +2024-09-11 09:36:04.8850|DEBUG|EDOKA| +2024-09-11 09:36:05.5627|DEBUG|EDOKA| +2024-09-11 09:36:05.5712|DEBUG|EDOKA| +2024-09-11 09:36:05.6441|DEBUG|EDOKA| +2024-09-11 09:36:05.6782|DEBUG|EDOKA| +2024-09-11 09:36:05.6905|DEBUG|EDOKA| +2024-09-11 09:36:05.6905|DEBUG|EDOKA| +2024-09-11 09:36:05.6905|DEBUG|EDOKA| +2024-09-11 09:36:05.7092|DEBUG|EDOKA| +2024-09-11 09:36:05.7914|DEBUG|EDOKA| +2024-09-11 09:36:05.8144|DEBUG|EDOKA| +2024-09-11 09:36:05.8259|DEBUG|EDOKA| +2024-09-11 09:36:05.8308|DEBUG|EDOKA| +2024-09-11 09:36:05.8308|DEBUG|EDOKA| +2024-09-11 09:36:05.8308|DEBUG|EDOKA| +2024-09-11 09:36:05.9059|DEBUG|EDOKA| +2024-09-11 09:36:05.9236|DEBUG|EDOKA| +2024-09-11 09:36:05.9333|DEBUG|EDOKA| +2024-09-11 09:36:05.9453|DEBUG|EDOKA| +2024-09-11 09:36:05.9453|DEBUG|EDOKA| +2024-09-11 09:36:05.9925|DEBUG|EDOKA| +2024-09-11 09:36:06.0562|DEBUG|EDOKA| +2024-09-11 09:36:06.0748|DEBUG|EDOKA| +2024-09-11 09:36:06.0860|DEBUG|EDOKA| +2024-09-11 09:36:06.0860|DEBUG|EDOKA| +2024-09-11 09:36:06.0860|DEBUG|EDOKA| +2024-09-11 09:36:06.0990|DEBUG|EDOKA| +2024-09-11 09:36:12.2005|DEBUG|EDOKA| +2024-09-11 09:36:12.2431|DEBUG|EDOKA| +2024-09-11 09:36:12.2431|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2535|DEBUG|EDOKA| +2024-09-11 09:36:12.2680|DEBUG|EDOKA| +2024-09-11 09:36:12.2680|DEBUG|EDOKA| +2024-09-11 09:36:25.8931|DEBUG|EDOKA| +2024-09-11 09:36:25.9445|DEBUG|EDOKA| +2024-09-11 09:36:25.9671|DEBUG|EDOKA| +2024-09-11 09:36:25.9671|DEBUG|EDOKA| +2024-09-11 09:36:25.9726|DEBUG|EDOKA| +2024-09-11 09:36:25.9726|DEBUG|EDOKA| +2024-09-11 09:36:25.9726|DEBUG|EDOKA| +2024-09-11 09:36:25.9726|DEBUG|EDOKA| +2024-09-11 09:36:25.9896|DEBUG|EDOKA| +2024-09-11 09:36:36.4544|DEBUG|EDOKA| +2024-09-11 09:36:36.4909|DEBUG|EDOKA| +2024-09-11 09:36:36.4909|DEBUG|EDOKA| +2024-09-11 09:36:36.5096|DEBUG|EDOKA| +2024-09-11 09:36:36.5279|DEBUG|EDOKA| +2024-09-11 09:36:36.5279|DEBUG|EDOKA| +2024-09-11 09:36:36.5359|DEBUG|EDOKA| +2024-09-11 09:36:36.5359|DEBUG|EDOKA| +2024-09-11 09:36:41.5484|DEBUG|EDOKA| +2024-09-11 09:36:41.5580|DEBUG|EDOKA| +2024-09-11 09:36:41.5580|DEBUG|EDOKA| +2024-09-11 09:36:41.5717|DEBUG|EDOKA| +2024-09-11 09:36:41.5937|DEBUG|EDOKA| +2024-09-11 09:36:41.5937|DEBUG|EDOKA| +2024-09-11 09:36:41.6049|DEBUG|EDOKA| +2024-09-11 09:36:41.6049|DEBUG|EDOKA| +2024-09-11 09:36:41.8754|DEBUG|EDOKA| +2024-09-11 09:36:41.8774|DEBUG|EDOKA| +2024-09-11 09:36:41.8774|DEBUG|EDOKA| +2024-09-11 09:36:41.8774|DEBUG|EDOKA| +2024-09-11 09:36:41.9077|DEBUG|EDOKA| +2024-09-11 09:36:41.9087|DEBUG|EDOKA| +2024-09-11 09:36:41.9087|DEBUG|EDOKA| +2024-09-11 09:36:41.9087|DEBUG|EDOKA| +2024-09-11 09:36:42.1780|DEBUG|EDOKA| +2024-09-11 09:36:42.1780|DEBUG|EDOKA| +2024-09-11 09:36:42.1780|DEBUG|EDOKA| +2024-09-11 09:36:42.1927|DEBUG|EDOKA| +2024-09-11 09:36:42.2148|DEBUG|EDOKA| +2024-09-11 09:36:42.2148|DEBUG|EDOKA| +2024-09-11 09:36:42.2148|DEBUG|EDOKA| +2024-09-11 09:36:42.2228|DEBUG|EDOKA| +2024-09-11 09:36:42.2621|DEBUG|EDOKA| +2024-09-11 09:36:42.2621|DEBUG|EDOKA| +2024-09-11 09:36:42.2621|DEBUG|EDOKA| +2024-09-11 09:36:42.2773|DEBUG|EDOKA| +2024-09-11 09:36:42.2957|DEBUG|EDOKA| +2024-09-11 09:36:42.2957|DEBUG|EDOKA| +2024-09-11 09:36:42.3242|DEBUG|EDOKA| +2024-09-11 09:36:42.3242|DEBUG|EDOKA| +2024-09-11 09:36:42.6331|DEBUG|EDOKA| +2024-09-11 09:36:49.4243|DEBUG|EDOKA| +2024-09-11 09:36:50.7357|DEBUG|EDOKA| +2024-09-11 09:37:04.8901|DEBUG|EDOKA| +2024-09-11 09:37:40.4865|DEBUG|EDOKA| +2024-09-11 09:37:41.5635|DEBUG|EDOKA| +2024-09-11 09:37:45.2071|DEBUG|EDOKA| +2024-09-11 09:37:45.6081|DEBUG|EDOKA| +2024-09-11 09:37:46.3945|DEBUG|EDOKA| +2024-09-11 09:38:04.8851|DEBUG|EDOKA| +2024-09-11 09:38:14.6898|DEBUG|EDOKA| +2024-09-11 09:38:14.7409|DEBUG|EDOKA| +2024-09-11 09:38:14.7409|DEBUG|EDOKA| +2024-09-11 09:39:04.8888|DEBUG|EDOKA| +2024-09-11 10:12:14.2224|DEBUG|EDOKA|Start +2024-09-11 10:12:14.2943|DEBUG|EDOKA| +2024-09-11 10:12:14.3073|DEBUG|EDOKA| +2024-09-11 10:12:14.3073|DEBUG|EDOKA| +2024-09-11 10:12:14.3073|DEBUG|EDOKA| +2024-09-11 10:12:14.3414|DEBUG|EDOKA| +2024-09-11 10:12:14.4364|DEBUG|EDOKA|Start - Ende +2024-09-11 10:12:29.9958|DEBUG|EDOKA| +2024-09-11 10:14:46.6968|DEBUG|EDOKA|Start +2024-09-11 10:14:46.7574|DEBUG|EDOKA| +2024-09-11 10:14:46.7574|DEBUG|EDOKA| +2024-09-11 10:14:46.7574|DEBUG|EDOKA| +2024-09-11 10:14:46.7574|DEBUG|EDOKA| +2024-09-11 10:14:46.7831|DEBUG|EDOKA| +2024-09-11 10:14:46.8749|DEBUG|EDOKA|Start - Ende +2024-09-11 10:14:52.1479|DEBUG|EDOKA| +2024-09-11 10:15:46.8663|DEBUG|EDOKA| +2024-09-11 10:16:46.8642|DEBUG|EDOKA| +2024-09-11 10:17:46.8714|DEBUG|EDOKA| +2024-09-11 10:18:46.8722|DEBUG|EDOKA| +2024-09-11 10:19:46.8672|DEBUG|EDOKA| +2024-09-11 10:20:46.8735|DEBUG|EDOKA| +2024-09-11 10:21:46.8726|DEBUG|EDOKA| +2024-09-11 10:22:46.8741|DEBUG|EDOKA| +2024-09-11 10:23:46.8659|DEBUG|EDOKA| +2024-09-11 10:23:52.4242|DEBUG|EDOKA| +2024-09-11 10:23:54.2707|DEBUG|EDOKA| +2024-09-11 10:24:46.8649|DEBUG|EDOKA| +2024-09-11 10:25:25.6941|DEBUG|EDOKA| +2024-09-11 10:57:48.8777|DEBUG|EDOKA|Start +2024-09-11 10:57:48.9384|DEBUG|EDOKA| +2024-09-11 10:57:48.9434|DEBUG|EDOKA| +2024-09-11 10:57:48.9434|DEBUG|EDOKA| +2024-09-11 10:57:48.9434|DEBUG|EDOKA| +2024-09-11 10:57:48.9660|DEBUG|EDOKA| +2024-09-11 10:57:49.0484|DEBUG|EDOKA|Start - Ende +2024-09-11 10:58:49.0353|DEBUG|EDOKA| +2024-09-11 10:59:49.0390|DEBUG|EDOKA| +2024-09-11 11:00:49.0385|DEBUG|EDOKA| +2024-09-11 11:01:49.0350|DEBUG|EDOKA| +2024-09-11 11:02:49.0349|DEBUG|EDOKA| +2024-09-11 11:03:49.0376|DEBUG|EDOKA| +2024-09-11 11:04:49.0365|DEBUG|EDOKA| +2024-09-11 11:05:49.0376|DEBUG|EDOKA| +2024-09-11 11:06:49.0363|DEBUG|EDOKA| +2024-09-11 11:07:49.0369|DEBUG|EDOKA| +2024-09-11 11:08:49.0366|DEBUG|EDOKA| +2024-09-11 11:09:49.0361|DEBUG|EDOKA| +2024-09-11 11:10:49.0366|DEBUG|EDOKA| +2024-09-11 11:11:49.0348|DEBUG|EDOKA| +2024-09-11 11:12:49.0344|DEBUG|EDOKA| +2024-09-11 11:13:49.0367|DEBUG|EDOKA| +2024-09-11 11:14:49.0362|DEBUG|EDOKA| +2024-09-11 11:15:49.0381|DEBUG|EDOKA| +2024-09-11 11:16:49.0367|DEBUG|EDOKA| +2024-09-11 11:17:49.0372|DEBUG|EDOKA| +2024-09-11 11:18:49.0345|DEBUG|EDOKA| +2024-09-11 11:19:49.0352|DEBUG|EDOKA| +2024-09-11 11:20:49.0387|DEBUG|EDOKA| +2024-09-11 11:21:49.0362|DEBUG|EDOKA| +2024-09-11 11:22:49.0358|DEBUG|EDOKA| +2024-09-11 11:23:49.0339|DEBUG|EDOKA| +2024-09-11 11:24:49.0345|DEBUG|EDOKA| +2024-09-11 11:25:49.0372|DEBUG|EDOKA| +2024-09-11 11:26:49.0355|DEBUG|EDOKA| +2024-09-11 11:27:49.0375|DEBUG|EDOKA| +2024-09-11 11:28:49.0349|DEBUG|EDOKA| +2024-09-11 11:29:49.0363|DEBUG|EDOKA| +2024-09-11 11:30:49.0346|DEBUG|EDOKA| +2024-09-11 11:31:49.0363|DEBUG|EDOKA| +2024-09-11 11:32:49.0372|DEBUG|EDOKA| +2024-09-11 11:33:49.0375|DEBUG|EDOKA| +2024-09-11 11:34:49.0370|DEBUG|EDOKA| +2024-09-11 11:35:49.0352|DEBUG|EDOKA| +2024-09-11 11:36:49.0354|DEBUG|EDOKA| +2024-09-11 11:37:49.0387|DEBUG|EDOKA| +2024-09-11 11:38:49.0362|DEBUG|EDOKA| +2024-09-11 11:39:49.0348|DEBUG|EDOKA| +2024-09-11 11:40:49.0386|DEBUG|EDOKA| +2024-09-11 11:41:49.0394|DEBUG|EDOKA| +2024-09-11 11:42:49.0357|DEBUG|EDOKA| +2024-09-11 11:43:49.0359|DEBUG|EDOKA| +2024-09-11 11:44:49.0378|DEBUG|EDOKA| +2024-09-11 11:45:49.0378|DEBUG|EDOKA| +2024-09-11 11:46:49.0375|DEBUG|EDOKA| +2024-09-11 11:47:49.0348|DEBUG|EDOKA| +2024-09-11 11:48:49.0373|DEBUG|EDOKA| +2024-09-11 11:49:49.0397|DEBUG|EDOKA| +2024-09-11 11:50:49.0349|DEBUG|EDOKA| +2024-09-11 11:51:49.0361|DEBUG|EDOKA| +2024-09-11 11:52:49.0375|DEBUG|EDOKA| +2024-09-11 11:53:49.0364|DEBUG|EDOKA| +2024-09-11 11:54:49.0387|DEBUG|EDOKA| +2024-09-11 11:55:49.0364|DEBUG|EDOKA| +2024-09-11 11:56:49.0358|DEBUG|EDOKA| +2024-09-11 11:57:49.0344|DEBUG|EDOKA| +2024-09-11 11:58:49.0356|DEBUG|EDOKA| +2024-09-11 11:59:49.0369|DEBUG|EDOKA| +2024-09-11 12:00:49.0357|DEBUG|EDOKA| +2024-09-11 12:01:49.0349|DEBUG|EDOKA| +2024-09-11 12:02:49.0363|DEBUG|EDOKA| +2024-09-11 12:03:49.0378|DEBUG|EDOKA| +2024-09-11 12:04:49.0346|DEBUG|EDOKA| +2024-09-11 12:05:49.0335|DEBUG|EDOKA| +2024-09-11 12:06:49.0370|DEBUG|EDOKA| +2024-09-11 12:07:49.0343|DEBUG|EDOKA| +2024-09-11 12:08:49.0348|DEBUG|EDOKA| +2024-09-11 12:09:49.0346|DEBUG|EDOKA| +2024-09-11 12:10:49.0350|DEBUG|EDOKA| +2024-09-11 12:11:49.0346|DEBUG|EDOKA| +2024-09-11 12:12:49.0391|DEBUG|EDOKA| +2024-09-11 12:13:49.0359|DEBUG|EDOKA| +2024-09-11 12:14:49.0354|DEBUG|EDOKA| +2024-09-11 12:15:49.0378|DEBUG|EDOKA| +2024-09-11 12:16:49.0351|DEBUG|EDOKA| +2024-09-11 12:17:49.0355|DEBUG|EDOKA| +2024-09-11 12:18:49.0366|DEBUG|EDOKA| +2024-09-11 12:19:49.0375|DEBUG|EDOKA| +2024-09-11 12:20:49.0354|DEBUG|EDOKA| +2024-09-11 12:21:49.0379|DEBUG|EDOKA| +2024-09-11 12:22:49.0352|DEBUG|EDOKA| +2024-09-11 12:23:49.0361|DEBUG|EDOKA| +2024-09-11 12:24:49.0350|DEBUG|EDOKA| +2024-09-11 12:25:49.0343|DEBUG|EDOKA| +2024-09-11 12:26:49.0386|DEBUG|EDOKA| +2024-09-11 12:27:49.0380|DEBUG|EDOKA| +2024-09-11 12:28:49.0391|DEBUG|EDOKA| +2024-09-11 12:29:49.0351|DEBUG|EDOKA| +2024-09-11 12:30:49.0360|DEBUG|EDOKA| +2024-09-11 12:31:49.0390|DEBUG|EDOKA| +2024-09-11 12:32:49.0367|DEBUG|EDOKA| +2024-09-11 12:33:49.0351|DEBUG|EDOKA| +2024-09-11 12:34:49.0346|DEBUG|EDOKA| +2024-09-11 12:35:49.0348|DEBUG|EDOKA| +2024-09-11 12:36:49.0395|DEBUG|EDOKA| +2024-09-11 12:37:49.0376|DEBUG|EDOKA| +2024-09-11 12:38:49.0374|DEBUG|EDOKA| +2024-09-11 12:39:49.0345|DEBUG|EDOKA| +2024-09-11 12:40:49.0354|DEBUG|EDOKA| +2024-09-11 12:41:49.0359|DEBUG|EDOKA| +2024-09-11 12:42:49.0346|DEBUG|EDOKA| +2024-09-11 12:43:49.0384|DEBUG|EDOKA| +2024-09-11 12:44:49.0385|DEBUG|EDOKA| +2024-09-11 12:45:49.0384|DEBUG|EDOKA| +2024-09-11 12:46:49.0364|DEBUG|EDOKA| +2024-09-11 12:47:49.0379|DEBUG|EDOKA| +2024-09-11 12:48:49.0400|DEBUG|EDOKA| +2024-09-11 12:49:49.0375|DEBUG|EDOKA| +2024-09-11 12:50:49.0378|DEBUG|EDOKA| +2024-09-11 12:51:13.3420|DEBUG|EDOKA| +2024-09-11 12:51:18.0914|DEBUG|EDOKA| +2024-09-11 12:51:49.0362|DEBUG|EDOKA| +2024-09-11 12:52:49.0345|DEBUG|EDOKA| +2024-09-11 12:53:49.0455|DEBUG|EDOKA| +2024-09-11 12:54:49.0412|DEBUG|EDOKA| +2024-09-11 12:55:49.0375|DEBUG|EDOKA| +2024-09-11 12:56:49.0346|DEBUG|EDOKA| +2024-09-11 12:57:49.0473|DEBUG|EDOKA| +2024-09-11 12:58:49.0393|DEBUG|EDOKA| +2024-09-11 12:59:49.0423|DEBUG|EDOKA| +2024-09-11 13:00:49.0425|DEBUG|EDOKA| +2024-09-11 13:01:49.0478|DEBUG|EDOKA| +2024-09-11 13:02:49.0362|DEBUG|EDOKA| +2024-09-11 13:03:49.0379|DEBUG|EDOKA| +2024-09-11 13:04:49.0452|DEBUG|EDOKA| +2024-09-11 13:05:49.0347|DEBUG|EDOKA| +2024-09-11 13:06:49.0423|DEBUG|EDOKA| +2024-09-11 13:07:49.0390|DEBUG|EDOKA| +2024-09-11 13:08:49.0414|DEBUG|EDOKA| +2024-09-11 13:09:49.0492|DEBUG|EDOKA| +2024-09-11 13:10:49.0394|DEBUG|EDOKA| +2024-09-11 13:11:49.0378|DEBUG|EDOKA| +2024-09-11 13:12:49.0362|DEBUG|EDOKA| +2024-09-11 13:13:49.0430|DEBUG|EDOKA| +2024-09-11 13:14:49.0429|DEBUG|EDOKA| +2024-09-11 13:15:49.0347|DEBUG|EDOKA| +2024-09-11 13:16:49.0396|DEBUG|EDOKA| +2024-09-11 13:17:49.0434|DEBUG|EDOKA| +2024-09-11 13:18:49.0440|DEBUG|EDOKA| +2024-09-11 13:19:49.0361|DEBUG|EDOKA| +2024-09-11 13:20:49.0471|DEBUG|EDOKA| +2024-09-11 13:21:49.0396|DEBUG|EDOKA| +2024-09-11 13:22:49.0439|DEBUG|EDOKA| +2024-09-11 13:50:58.7819|DEBUG|EDOKA|Start +2024-09-11 13:50:58.8335|DEBUG|EDOKA| +2024-09-11 13:50:58.8335|DEBUG|EDOKA| +2024-09-11 13:50:58.8335|DEBUG|EDOKA| +2024-09-11 13:50:58.8335|DEBUG|EDOKA| +2024-09-11 13:50:58.8775|DEBUG|EDOKA| +2024-09-11 13:50:58.9571|DEBUG|EDOKA|Start - Ende +2024-09-11 13:51:02.7018|DEBUG|EDOKA| +2024-09-11 13:51:02.8620|DEBUG|EDOKA| +2024-09-11 13:51:03.0159|DEBUG|EDOKA| +2024-09-11 13:51:13.9608|DEBUG|EDOKA| +2024-09-11 13:51:13.9725|DEBUG|EDOKA| +2024-09-11 13:51:13.9910|DEBUG|EDOKA| +2024-09-11 13:51:13.9910|DEBUG|EDOKA| +2024-09-11 13:51:25.2321|DEBUG|EDOKA| +2024-09-11 13:51:39.8881|DEBUG|EDOKA| +2024-09-11 13:51:39.9315|DEBUG|EDOKA| +2024-09-11 13:51:39.9315|DEBUG|EDOKA| +2024-09-11 13:51:39.9545|DEBUG|EDOKA| +2024-09-11 13:51:58.9639|DEBUG|EDOKA| +2024-09-11 13:52:13.1250|DEBUG|EDOKA| +2024-09-11 13:52:23.2225|DEBUG|EDOKA|Start +2024-09-11 13:52:23.2581|DEBUG|EDOKA| +2024-09-11 13:52:23.2581|DEBUG|EDOKA| +2024-09-11 13:52:23.2581|DEBUG|EDOKA| +2024-09-11 13:52:23.2761|DEBUG|EDOKA| +2024-09-11 13:52:23.2986|DEBUG|EDOKA| +2024-09-11 13:52:23.3609|DEBUG|EDOKA|Start - Ende +2024-09-11 13:52:31.5473|DEBUG|EDOKA| +2024-09-11 13:52:31.6490|DEBUG|EDOKA| +2024-09-11 13:52:31.7077|DEBUG|EDOKA| +2024-09-11 13:52:53.1245|DEBUG|EDOKA| +2024-09-11 13:52:53.1618|DEBUG|EDOKA| +2024-09-11 13:52:53.1804|DEBUG|EDOKA| +2024-09-11 13:52:53.1804|DEBUG|EDOKA| +2024-09-11 13:53:23.3505|DEBUG|EDOKA| +2024-09-11 13:53:26.8816|DEBUG|EDOKA| +2024-09-11 13:53:47.7240|DEBUG|EDOKA| +2024-09-11 13:53:47.7638|DEBUG|EDOKA| +2024-09-11 13:53:47.7726|DEBUG|EDOKA| +2024-09-11 13:53:47.7726|DEBUG|EDOKA| +2024-09-11 13:55:24.0650|DEBUG|EDOKA|Start +2024-09-11 13:55:24.1267|DEBUG|EDOKA| +2024-09-11 13:55:24.1307|DEBUG|EDOKA| +2024-09-11 13:55:24.1307|DEBUG|EDOKA| +2024-09-11 13:55:24.1307|DEBUG|EDOKA| +2024-09-11 13:55:24.1737|DEBUG|EDOKA| +2024-09-11 13:55:24.2368|DEBUG|EDOKA|Start - Ende +2024-09-11 13:55:27.8263|DEBUG|EDOKA| +2024-09-11 13:55:41.8274|DEBUG|EDOKA| +2024-09-11 13:55:41.8669|DEBUG|EDOKA| +2024-09-11 13:55:41.8669|DEBUG|EDOKA| +2024-09-11 13:55:41.8669|DEBUG|EDOKA| +2024-09-11 13:55:52.9035|DEBUG|EDOKA| +2024-09-11 13:55:52.9430|DEBUG|EDOKA| +2024-09-11 13:55:52.9430|DEBUG|EDOKA| +2024-09-11 13:55:52.9430|DEBUG|EDOKA| +2024-09-11 13:56:30.7304|DEBUG|EDOKA|Start +2024-09-11 13:56:30.7925|DEBUG|EDOKA| +2024-09-11 13:56:30.7925|DEBUG|EDOKA| +2024-09-11 13:56:30.7925|DEBUG|EDOKA| +2024-09-11 13:56:30.8055|DEBUG|EDOKA| +2024-09-11 13:56:30.8240|DEBUG|EDOKA| +2024-09-11 13:56:30.8900|DEBUG|EDOKA|Start - Ende +2024-09-11 13:56:33.8033|DEBUG|EDOKA| +2024-09-11 13:56:42.7514|DEBUG|EDOKA| +2024-09-11 13:56:42.7904|DEBUG|EDOKA| +2024-09-11 13:56:42.7904|DEBUG|EDOKA| +2024-09-11 13:56:42.7904|DEBUG|EDOKA| +2024-09-11 13:57:09.6238|DEBUG|EDOKA| +2024-09-11 13:57:09.6597|DEBUG|EDOKA| +2024-09-11 13:57:13.5152|DEBUG|EDOKA| +2024-09-11 13:57:13.5510|DEBUG|EDOKA| +2024-09-11 13:57:22.6734|DEBUG|EDOKA| +2024-09-11 13:57:22.7108|DEBUG|EDOKA| +2024-09-11 13:57:30.8691|DEBUG|EDOKA| +2024-09-11 13:57:30.9212|DEBUG|EDOKA| +2024-09-11 13:57:30.9448|DEBUG|EDOKA| +2024-09-11 13:57:30.9704|DEBUG|EDOKA| +2024-09-11 13:57:31.0656|DEBUG|EDOKA| +2024-09-11 13:57:34.4768|DEBUG|EDOKA| +2024-09-11 13:57:34.5149|DEBUG|EDOKA| +2024-09-11 13:57:36.1690|DEBUG|EDOKA| +2024-09-11 13:57:36.1800|DEBUG|EDOKA| +2024-09-11 13:57:36.1800|DEBUG|EDOKA| +2024-09-11 13:57:36.1800|DEBUG|EDOKA| +2024-09-11 13:57:36.1800|DEBUG|EDOKA| +2024-09-11 13:57:36.2098|DEBUG|EDOKA| +2024-09-11 13:58:08.9304|DEBUG|EDOKA| +2024-09-11 14:15:07.6856|DEBUG|EDOKA|Start +2024-09-11 14:15:07.7482|DEBUG|EDOKA| +2024-09-11 14:15:07.7522|DEBUG|EDOKA| +2024-09-11 14:15:07.7522|DEBUG|EDOKA| +2024-09-11 14:15:07.7522|DEBUG|EDOKA| +2024-09-11 14:15:07.8142|DEBUG|EDOKA| +2024-09-11 14:15:07.8917|DEBUG|EDOKA|Start - Ende +2024-09-11 14:15:11.5023|DEBUG|EDOKA| +2024-09-11 14:15:14.0010|DEBUG|EDOKA| +2024-09-11 14:15:14.0135|DEBUG|EDOKA| +2024-09-11 14:15:14.0195|DEBUG|EDOKA| +2024-09-11 14:15:14.1380|DEBUG|EDOKA| +2024-09-11 14:42:46.4074|DEBUG|EDOKA|Start +2024-09-11 14:42:46.4692|DEBUG|EDOKA| +2024-09-11 14:42:46.4722|DEBUG|EDOKA| +2024-09-11 14:42:46.4722|DEBUG|EDOKA| +2024-09-11 14:42:46.4722|DEBUG|EDOKA| +2024-09-11 14:42:46.4989|DEBUG|EDOKA| +2024-09-11 14:42:46.5767|DEBUG|EDOKA|Start - Ende +2024-09-11 14:42:49.2610|DEBUG|EDOKA| +2024-09-11 14:42:50.8084|DEBUG|EDOKA| +2024-09-11 14:42:50.8223|DEBUG|EDOKA| +2024-09-11 14:42:50.8223|DEBUG|EDOKA| +2024-09-11 14:42:50.8223|DEBUG|EDOKA| +2024-09-11 14:46:07.5931|DEBUG|EDOKA|Start +2024-09-11 14:46:07.6572|DEBUG|EDOKA| +2024-09-11 14:46:07.6612|DEBUG|EDOKA| +2024-09-11 14:46:07.6612|DEBUG|EDOKA| +2024-09-11 14:46:07.6612|DEBUG|EDOKA| +2024-09-11 14:46:07.6899|DEBUG|EDOKA| +2024-09-11 14:46:07.7539|DEBUG|EDOKA|Start - Ende +2024-09-11 14:46:10.5223|DEBUG|EDOKA| +2024-09-11 14:46:12.4255|DEBUG|EDOKA| +2024-09-11 14:46:12.4255|DEBUG|EDOKA| +2024-09-11 14:46:12.4421|DEBUG|EDOKA| +2024-09-11 14:46:12.4421|DEBUG|EDOKA| +2024-09-11 14:46:49.6155|DEBUG|EDOKA| +2024-09-11 14:47:31.5365|DEBUG|EDOKA|Start +2024-09-11 14:47:31.5999|DEBUG|EDOKA| +2024-09-11 14:47:31.5999|DEBUG|EDOKA| +2024-09-11 14:47:31.5999|DEBUG|EDOKA| +2024-09-11 14:47:31.6143|DEBUG|EDOKA| +2024-09-11 14:47:31.6417|DEBUG|EDOKA| +2024-09-11 14:47:31.7039|DEBUG|EDOKA|Start - Ende +2024-09-11 14:47:34.4538|DEBUG|EDOKA| +2024-09-11 14:47:35.8104|DEBUG|EDOKA| +2024-09-11 14:47:35.8226|DEBUG|EDOKA| +2024-09-11 14:47:35.8226|DEBUG|EDOKA| +2024-09-11 14:47:35.8226|DEBUG|EDOKA| +2024-09-11 14:48:05.9044|DEBUG|EDOKA|Start +2024-09-11 14:48:05.9667|DEBUG|EDOKA| +2024-09-11 14:48:05.9727|DEBUG|EDOKA| +2024-09-11 14:48:05.9727|DEBUG|EDOKA| +2024-09-11 14:48:05.9727|DEBUG|EDOKA| +2024-09-11 14:48:06.0009|DEBUG|EDOKA| +2024-09-11 14:48:06.0625|DEBUG|EDOKA|Start - Ende +2024-09-11 14:48:08.5970|DEBUG|EDOKA| +2024-09-11 14:48:09.8229|DEBUG|EDOKA| +2024-09-11 14:48:09.8364|DEBUG|EDOKA| +2024-09-11 14:48:09.8364|DEBUG|EDOKA| +2024-09-11 14:48:09.8364|DEBUG|EDOKA| +2024-09-11 14:48:32.2830|DEBUG|EDOKA|Start +2024-09-11 14:48:32.3468|DEBUG|EDOKA| +2024-09-11 14:48:32.3468|DEBUG|EDOKA| +2024-09-11 14:48:32.3468|DEBUG|EDOKA| +2024-09-11 14:48:32.3468|DEBUG|EDOKA| +2024-09-11 14:48:32.3758|DEBUG|EDOKA| +2024-09-11 14:48:32.4391|DEBUG|EDOKA|Start - Ende +2024-09-11 14:48:35.0271|DEBUG|EDOKA| +2024-09-11 14:48:36.5290|DEBUG|EDOKA| +2024-09-11 14:48:36.5425|DEBUG|EDOKA| +2024-09-11 14:48:36.5425|DEBUG|EDOKA| +2024-09-11 14:48:36.5425|DEBUG|EDOKA| +2024-09-11 14:48:51.8556|DEBUG|EDOKA| +2024-09-11 14:49:32.4291|DEBUG|EDOKA| +2024-09-11 14:49:51.3375|DEBUG|EDOKA| +2024-09-11 14:49:53.6371|DEBUG|EDOKA| +2024-09-11 14:49:53.6491|DEBUG|EDOKA| +2024-09-11 14:49:53.6491|DEBUG|EDOKA| +2024-09-11 14:49:53.6491|DEBUG|EDOKA| +2024-09-11 14:49:53.6823|DEBUG|EDOKA| +2024-09-11 14:50:05.6928|DEBUG|EDOKA| +2024-09-11 14:50:05.7344|DEBUG|EDOKA| +2024-09-11 14:50:05.7394|DEBUG|EDOKA| +2024-09-11 14:50:05.7394|DEBUG|EDOKA| +2024-09-11 14:50:05.7875|DEBUG|EDOKA| +2024-09-11 14:50:12.4004|DEBUG|EDOKA| +2024-09-11 14:50:12.4406|DEBUG|EDOKA| +2024-09-11 14:50:12.4406|DEBUG|EDOKA| +2024-09-11 14:50:12.4406|DEBUG|EDOKA| +2024-09-11 14:50:12.4719|DEBUG|EDOKA| +2024-09-11 15:06:14.6216|DEBUG|EDOKA|Start +2024-09-11 15:06:14.6826|DEBUG|EDOKA| +2024-09-11 15:06:14.6826|DEBUG|EDOKA| +2024-09-11 15:06:14.6826|DEBUG|EDOKA| +2024-09-11 15:06:14.6957|DEBUG|EDOKA| +2024-09-11 15:06:14.7162|DEBUG|EDOKA| +2024-09-11 15:06:14.7802|DEBUG|EDOKA|Start - Ende +2024-09-11 15:06:16.9203|DEBUG|EDOKA| +2024-09-11 15:06:19.0353|DEBUG|EDOKA| +2024-09-11 15:06:19.0353|DEBUG|EDOKA| +2024-09-11 15:06:19.0539|DEBUG|EDOKA| +2024-09-11 15:06:19.0539|DEBUG|EDOKA| +2024-09-11 15:06:19.1656|DEBUG|EDOKA| +2024-09-11 15:06:22.2985|DEBUG|EDOKA| +2024-09-11 15:06:29.3084|DEBUG|EDOKA| +2024-09-11 15:06:29.3546|DEBUG|EDOKA| +2024-09-11 15:06:29.3546|DEBUG|EDOKA| +2024-09-11 15:06:29.3546|DEBUG|EDOKA| +2024-09-11 15:06:29.4003|DEBUG|EDOKA| +2024-09-11 15:06:34.8943|DEBUG|EDOKA| +2024-09-11 15:07:23.7378|DEBUG|EDOKA|Start +2024-09-11 15:07:23.8145|DEBUG|EDOKA| +2024-09-11 15:07:23.8175|DEBUG|EDOKA| +2024-09-11 15:07:23.8175|DEBUG|EDOKA| +2024-09-11 15:07:23.8175|DEBUG|EDOKA| +2024-09-11 15:07:23.8455|DEBUG|EDOKA| +2024-09-11 15:07:23.9105|DEBUG|EDOKA|Start - Ende +2024-09-11 15:07:27.5020|DEBUG|EDOKA| +2024-09-11 15:07:34.4164|DEBUG|EDOKA| +2024-09-11 15:07:39.4219|DEBUG|EDOKA| +2024-09-11 15:07:39.4608|DEBUG|EDOKA| +2024-09-11 15:07:39.4608|DEBUG|EDOKA| +2024-09-11 15:07:39.4608|DEBUG|EDOKA| +2024-09-11 15:07:39.5625|DEBUG|EDOKA| +2024-09-11 15:07:47.8765|DEBUG|EDOKA| +2024-09-11 15:07:51.1147|DEBUG|EDOKA| +2024-09-11 15:07:51.1279|DEBUG|EDOKA| +2024-09-11 15:07:51.1279|DEBUG|EDOKA| +2024-09-11 15:07:51.1279|DEBUG|EDOKA| +2024-09-11 15:07:51.1813|DEBUG|EDOKA| +2024-09-11 15:08:23.9250|DEBUG|EDOKA| +2024-09-11 15:08:25.7619|DEBUG|EDOKA| +2024-09-11 15:08:26.9338|DEBUG|EDOKA| +2024-09-11 15:08:26.9453|DEBUG|EDOKA| +2024-09-11 15:08:26.9453|DEBUG|EDOKA| +2024-09-11 15:08:26.9453|DEBUG|EDOKA| +2024-09-11 15:08:26.9990|DEBUG|EDOKA| +2024-09-11 15:08:57.8488|DEBUG|EDOKA| +2024-09-11 15:09:24.0883|DEBUG|EDOKA| +2024-09-11 15:09:34.6007|DEBUG|EDOKA| +2024-09-11 15:09:36.9392|DEBUG|EDOKA| +2024-09-11 15:09:36.9535|DEBUG|EDOKA| +2024-09-11 15:09:36.9585|DEBUG|EDOKA| +2024-09-11 15:09:36.9585|DEBUG|EDOKA| +2024-09-11 15:09:36.9916|DEBUG|EDOKA| +2024-09-11 15:09:48.1734|DEBUG|EDOKA| +2024-09-11 15:10:06.5258|DEBUG|EDOKA| +2024-09-11 15:10:06.5655|DEBUG|EDOKA| +2024-09-11 15:10:06.5655|DEBUG|EDOKA| +2024-09-11 15:10:06.5655|DEBUG|EDOKA| +2024-09-11 15:10:06.6099|DEBUG|EDOKA| +2024-09-11 15:10:59.1667|DEBUG|EDOKA| +2024-09-11 15:11:23.9241|DEBUG|EDOKA| +2024-09-11 15:12:23.9164|DEBUG|EDOKA| +2024-09-11 15:13:08.6542|DEBUG|EDOKA| +2024-09-11 15:13:10.3052|DEBUG|EDOKA| +2024-09-11 15:13:10.3181|DEBUG|EDOKA| +2024-09-11 15:13:10.3181|DEBUG|EDOKA| +2024-09-11 15:13:10.3181|DEBUG|EDOKA| +2024-09-11 15:13:10.3724|DEBUG|EDOKA| +2024-09-11 15:13:15.6879|DEBUG|EDOKA| +2024-09-11 15:13:15.7287|DEBUG|EDOKA| +2024-09-11 15:13:15.7375|DEBUG|EDOKA| +2024-09-11 15:13:15.7375|DEBUG|EDOKA| +2024-09-11 15:13:15.7716|DEBUG|EDOKA| +2024-09-11 15:13:22.1571|DEBUG|EDOKA| +2024-09-11 15:13:22.1983|DEBUG|EDOKA| +2024-09-11 15:13:22.1983|DEBUG|EDOKA| +2024-09-11 15:13:22.1983|DEBUG|EDOKA| +2024-09-11 15:13:22.2348|DEBUG|EDOKA| +2024-09-11 15:13:23.9183|DEBUG|EDOKA| +2024-09-11 15:13:29.9449|DEBUG|EDOKA| +2024-09-11 15:13:29.9864|DEBUG|EDOKA| +2024-09-11 15:13:29.9864|DEBUG|EDOKA| +2024-09-11 15:13:29.9864|DEBUG|EDOKA| +2024-09-11 15:13:30.0239|DEBUG|EDOKA| +2024-09-11 15:15:13.3444|DEBUG|EDOKA|Start +2024-09-11 15:15:13.4064|DEBUG|EDOKA| +2024-09-11 15:15:13.4114|DEBUG|EDOKA| +2024-09-11 15:15:13.4114|DEBUG|EDOKA| +2024-09-11 15:15:13.4114|DEBUG|EDOKA| +2024-09-11 15:15:13.4364|DEBUG|EDOKA| +2024-09-11 15:15:13.4990|DEBUG|EDOKA|Start - Ende +2024-09-11 15:15:16.0804|DEBUG|EDOKA| +2024-09-11 15:15:17.7090|DEBUG|EDOKA| +2024-09-11 15:15:17.7215|DEBUG|EDOKA| +2024-09-11 15:15:17.7215|DEBUG|EDOKA| +2024-09-11 15:15:17.7215|DEBUG|EDOKA| +2024-09-11 15:15:17.8288|DEBUG|EDOKA| +2024-09-11 15:15:26.7832|DEBUG|EDOKA| +2024-09-11 15:15:30.7200|DEBUG|EDOKA| +2024-09-11 15:15:30.7585|DEBUG|EDOKA| +2024-09-11 15:15:30.7585|DEBUG|EDOKA| +2024-09-11 15:15:30.7585|DEBUG|EDOKA| +2024-09-11 15:15:30.7980|DEBUG|EDOKA| +2024-09-11 15:15:37.0597|DEBUG|EDOKA| +2024-09-11 15:15:37.0723|DEBUG|EDOKA| +2024-09-11 15:15:37.0723|DEBUG|EDOKA| +2024-09-11 15:15:37.0846|DEBUG|EDOKA| +2024-09-11 15:15:37.1106|DEBUG|EDOKA| +2024-09-11 15:16:21.3550|DEBUG|EDOKA|Start +2024-09-11 15:16:21.4180|DEBUG|EDOKA| +2024-09-11 15:16:21.4180|DEBUG|EDOKA| +2024-09-11 15:16:21.4260|DEBUG|EDOKA| +2024-09-11 15:16:21.4260|DEBUG|EDOKA| +2024-09-11 15:16:21.4510|DEBUG|EDOKA| +2024-09-11 15:16:21.5145|DEBUG|EDOKA|Start - Ende +2024-09-11 15:16:23.6560|DEBUG|EDOKA| +2024-09-11 15:16:25.3758|DEBUG|EDOKA| +2024-09-11 15:16:25.3926|DEBUG|EDOKA| +2024-09-11 15:16:25.3976|DEBUG|EDOKA| +2024-09-11 15:16:25.3976|DEBUG|EDOKA| +2024-09-11 15:16:25.4978|DEBUG|EDOKA| +2024-09-11 15:16:35.5729|DEBUG|EDOKA| +2024-09-11 15:16:37.1314|DEBUG|EDOKA| +2024-09-11 15:16:37.1314|DEBUG|EDOKA| +2024-09-11 15:16:37.1469|DEBUG|EDOKA| +2024-09-11 15:16:37.1469|DEBUG|EDOKA| +2024-09-11 15:16:37.1733|DEBUG|EDOKA| +2024-09-11 15:37:57.1021|DEBUG|EDOKA|Start +2024-09-11 15:37:57.1662|DEBUG|EDOKA| +2024-09-11 15:37:57.1662|DEBUG|EDOKA| +2024-09-11 15:37:57.1662|DEBUG|EDOKA| +2024-09-11 15:37:57.1802|DEBUG|EDOKA| +2024-09-11 15:37:57.1985|DEBUG|EDOKA| +2024-09-11 15:37:57.2590|DEBUG|EDOKA|Start - Ende +2024-09-11 15:37:59.8583|DEBUG|EDOKA| +2024-09-11 15:37:59.8683|DEBUG|EDOKA| +2024-09-11 15:38:03.9591|DEBUG|EDOKA| +2024-09-11 15:38:03.9591|DEBUG|EDOKA| +2024-09-11 15:38:10.2048|DEBUG|EDOKA| +2024-09-11 15:38:10.2136|DEBUG|EDOKA| +2024-09-11 15:38:20.2405|DEBUG|EDOKA| +2024-09-11 15:38:21.7525|DEBUG|EDOKA| +2024-09-11 15:38:21.7525|DEBUG|EDOKA| +2024-09-11 15:38:21.7700|DEBUG|EDOKA| +2024-09-11 15:38:21.7700|DEBUG|EDOKA| +2024-09-11 15:38:21.8820|DEBUG|EDOKA| +2024-09-11 15:38:37.1853|DEBUG|EDOKA| +2024-09-11 15:38:37.2206|DEBUG|EDOKA| +2024-09-11 15:38:41.9544|DEBUG|EDOKA| +2024-09-11 15:38:41.9907|DEBUG|EDOKA| +2024-09-11 15:38:45.9839|DEBUG|EDOKA| +2024-09-11 15:38:46.0202|DEBUG|EDOKA| +2024-09-11 15:38:57.0642|DEBUG|EDOKA| +2024-09-11 15:38:57.2541|DEBUG|EDOKA| +2024-09-11 15:38:58.6473|DEBUG|EDOKA| +2024-09-11 15:38:58.6587|DEBUG|EDOKA| +2024-09-11 15:38:58.6587|DEBUG|EDOKA| +2024-09-11 15:38:58.6587|DEBUG|EDOKA| +2024-09-11 15:38:58.6954|DEBUG|EDOKA| +2024-09-11 15:39:57.2580|DEBUG|EDOKA| +2024-09-11 15:40:05.5130|DEBUG|EDOKA| +2024-09-11 15:40:05.5514|DEBUG|EDOKA| +2024-09-11 15:40:05.5514|DEBUG|EDOKA| +2024-09-11 15:40:05.5514|DEBUG|EDOKA| +2024-09-11 15:40:05.5879|DEBUG|EDOKA| +2024-09-11 15:40:25.4122|DEBUG|EDOKA| +2024-09-11 15:40:25.4479|DEBUG|EDOKA| +2024-09-11 15:40:28.9378|DEBUG|EDOKA| +2024-09-11 15:40:28.9742|DEBUG|EDOKA| +2024-09-11 15:40:38.8299|DEBUG|EDOKA| +2024-09-11 15:40:38.8680|DEBUG|EDOKA| +2024-09-11 15:40:38.8680|DEBUG|EDOKA| +2024-09-11 15:40:38.8680|DEBUG|EDOKA| +2024-09-11 15:40:38.8964|DEBUG|EDOKA| +2024-09-11 15:40:49.2740|DEBUG|EDOKA| +2024-09-11 15:40:49.2850|DEBUG|EDOKA| +2024-09-11 15:40:49.2850|DEBUG|EDOKA| +2024-09-11 15:40:49.2850|DEBUG|EDOKA| +2024-09-11 15:40:49.2850|DEBUG|EDOKA| +2024-09-11 15:40:55.1822|DEBUG|EDOKA| +2024-09-11 15:40:55.1911|DEBUG|EDOKA| +2024-09-11 15:40:57.2686|DEBUG|EDOKA| +2024-09-11 15:40:57.8543|DEBUG|EDOKA| +2024-09-11 15:40:57.8643|DEBUG|EDOKA| +2024-09-11 15:41:19.2044|DEBUG|EDOKA| +2024-09-11 15:41:19.2437|DEBUG|EDOKA| +2024-09-11 15:41:19.2437|DEBUG|EDOKA| +2024-09-11 15:41:19.2548|DEBUG|EDOKA| +2024-09-11 15:41:19.2548|DEBUG|EDOKA| +2024-09-11 15:41:40.3705|DEBUG|EDOKA| +2024-09-11 15:41:40.4060|DEBUG|EDOKA| +2024-09-11 15:41:42.9683|DEBUG|EDOKA| +2024-09-11 15:41:42.9782|DEBUG|EDOKA| +2024-09-11 15:41:47.3687|DEBUG|EDOKA| +2024-09-11 15:41:47.4204|DEBUG|EDOKA| +2024-09-11 15:41:47.4340|DEBUG|EDOKA| +2024-09-11 15:41:47.4642|DEBUG|EDOKA| +2024-09-11 15:41:50.7504|DEBUG|EDOKA| +2024-09-11 15:41:50.7891|DEBUG|EDOKA| +2024-09-11 15:41:53.4080|DEBUG|EDOKA| +2024-09-11 15:41:53.4186|DEBUG|EDOKA| +2024-09-11 15:41:53.4186|DEBUG|EDOKA| +2024-09-11 15:41:53.4186|DEBUG|EDOKA| +2024-09-11 15:42:18.2147|DEBUG|EDOKA| +2024-09-11 15:42:18.2783|DEBUG|EDOKA| +2024-09-11 15:42:18.3741|DEBUG|EDOKA| +2024-09-11 15:42:57.3813|DEBUG|EDOKA|Start +2024-09-11 15:42:57.4516|DEBUG|EDOKA| +2024-09-11 15:42:57.4726|DEBUG|EDOKA| +2024-09-11 15:42:57.4726|DEBUG|EDOKA| +2024-09-11 15:42:57.4726|DEBUG|EDOKA| +2024-09-11 15:42:57.5027|DEBUG|EDOKA| +2024-09-11 15:42:57.5658|DEBUG|EDOKA|Start - Ende +2024-09-11 15:43:00.3067|DEBUG|EDOKA| +2024-09-11 15:43:03.2083|DEBUG|EDOKA| +2024-09-11 15:43:03.2208|DEBUG|EDOKA| +2024-09-11 15:43:03.2208|DEBUG|EDOKA| +2024-09-11 15:43:03.2208|DEBUG|EDOKA| +2024-09-11 15:43:03.2486|DEBUG|EDOKA| +2024-09-11 15:44:26.5329|DEBUG|EDOKA|Start +2024-09-11 15:44:26.5704|DEBUG|EDOKA| +2024-09-11 15:44:26.5704|DEBUG|EDOKA| +2024-09-11 15:44:26.5704|DEBUG|EDOKA| +2024-09-11 15:44:26.5834|DEBUG|EDOKA| +2024-09-11 15:44:26.6019|DEBUG|EDOKA| +2024-09-11 15:44:26.6704|DEBUG|EDOKA|Start - Ende +2024-09-11 15:44:29.0281|DEBUG|EDOKA| +2024-09-11 15:44:32.0340|DEBUG|EDOKA| +2024-09-11 15:44:32.0340|DEBUG|EDOKA| +2024-09-11 15:44:32.0498|DEBUG|EDOKA| +2024-09-11 15:44:32.0498|DEBUG|EDOKA| +2024-09-11 15:44:32.0743|DEBUG|EDOKA| +2024-09-11 15:45:26.7719|DEBUG|EDOKA| +2024-09-11 15:45:37.2243|DEBUG|EDOKA| +2024-09-11 15:45:37.2600|DEBUG|EDOKA| +2024-09-11 15:45:40.8555|DEBUG|EDOKA| +2024-09-11 15:45:40.8912|DEBUG|EDOKA| +2024-09-11 15:45:43.6362|DEBUG|EDOKA| +2024-09-11 15:45:43.6681|DEBUG|EDOKA| +2024-09-11 15:45:43.6841|DEBUG|EDOKA| +2024-09-11 15:45:43.7160|DEBUG|EDOKA| +2024-09-11 15:45:47.5739|DEBUG|EDOKA| +2024-09-11 15:45:47.6117|DEBUG|EDOKA| +2024-09-11 15:45:49.3782|DEBUG|EDOKA| +2024-09-11 15:45:49.3782|DEBUG|EDOKA| +2024-09-11 15:45:49.3782|DEBUG|EDOKA| +2024-09-11 15:45:49.3933|DEBUG|EDOKA| +2024-09-11 15:45:49.3933|DEBUG|EDOKA| +2024-09-11 15:45:49.4133|DEBUG|EDOKA| +2024-09-11 15:46:12.7909|DEBUG|EDOKA| +2024-09-11 15:46:12.8274|DEBUG|EDOKA| +2024-09-11 15:46:16.9161|DEBUG|EDOKA| +2024-09-11 15:46:16.9515|DEBUG|EDOKA| +2024-09-11 15:46:19.9799|DEBUG|EDOKA| +2024-09-11 15:46:23.2590|DEBUG|EDOKA| +2024-09-11 15:46:23.3294|DEBUG|EDOKA| +2024-09-11 15:46:26.6614|DEBUG|EDOKA| +2024-09-11 15:46:27.3590|DEBUG|EDOKA| +2024-09-11 15:46:27.3891|DEBUG|EDOKA| +2024-09-11 15:46:27.4507|DEBUG|EDOKA| +2024-09-11 15:46:31.3034|DEBUG|EDOKA| +2024-09-11 15:46:31.3687|DEBUG|EDOKA| +2024-09-11 15:46:31.3868|DEBUG|EDOKA| +2024-09-11 15:46:31.4183|DEBUG|EDOKA| +2024-09-11 15:46:32.9637|DEBUG|EDOKA| +2024-09-11 15:46:32.9737|DEBUG|EDOKA| +2024-09-11 15:46:32.9737|DEBUG|EDOKA| +2024-09-11 15:46:32.9737|DEBUG|EDOKA| +2024-09-11 15:46:32.9737|DEBUG|EDOKA| +2024-09-11 15:46:32.9921|DEBUG|EDOKA| +2024-09-11 15:47:26.6642|DEBUG|EDOKA| +2024-09-11 15:48:13.3708|DEBUG|EDOKA| +2024-09-11 15:48:13.4062|DEBUG|EDOKA| +2024-09-11 15:48:15.9698|DEBUG|EDOKA| +2024-09-11 15:48:17.8807|DEBUG|EDOKA| +2024-09-11 15:48:17.9234|DEBUG|EDOKA| +2024-09-11 15:48:17.9412|DEBUG|EDOKA| +2024-09-11 15:48:17.9688|DEBUG|EDOKA| +2024-09-11 15:48:21.6620|DEBUG|EDOKA| +2024-09-11 15:48:48.5021|DEBUG|EDOKA| +2024-09-11 15:48:48.5562|DEBUG|EDOKA| +2024-09-11 15:48:48.6711|DEBUG|EDOKA| +2024-09-11 15:48:52.9981|DEBUG|EDOKA| +2024-09-11 15:48:55.4899|DEBUG|EDOKA| +2024-09-11 15:48:55.5412|DEBUG|EDOKA| +2024-09-11 15:48:55.5660|DEBUG|EDOKA| +2024-09-11 15:48:55.5942|DEBUG|EDOKA| +2024-09-11 15:48:56.6854|DEBUG|EDOKA| +2024-09-11 15:48:56.6955|DEBUG|EDOKA| +2024-09-11 15:48:56.6955|DEBUG|EDOKA| +2024-09-11 15:48:56.6955|DEBUG|EDOKA| +2024-09-11 15:48:58.1657|DEBUG|EDOKA| +2024-09-11 15:48:58.1920|DEBUG|EDOKA| +2024-09-11 15:49:19.4013|DEBUG|EDOKA| +2024-09-11 15:49:23.0596|DEBUG|EDOKA| +2024-09-11 15:49:23.1175|DEBUG|EDOKA| +2024-09-11 15:49:23.1345|DEBUG|EDOKA| +2024-09-11 15:49:23.1630|DEBUG|EDOKA| +2024-09-11 15:49:26.6595|DEBUG|EDOKA| +2024-09-11 15:49:26.8270|DEBUG|EDOKA| +2024-09-11 15:49:26.8379|DEBUG|EDOKA| +2024-09-11 15:49:26.8379|DEBUG|EDOKA| +2024-09-11 15:49:26.8379|DEBUG|EDOKA| +2024-09-11 15:49:28.6674|DEBUG|EDOKA| +2024-09-11 15:49:28.7004|DEBUG|EDOKA| +2024-09-11 15:49:46.3851|DEBUG|EDOKA| +2024-09-11 15:49:48.6004|DEBUG|EDOKA| +2024-09-11 15:49:48.6289|DEBUG|EDOKA| +2024-09-11 15:49:48.6455|DEBUG|EDOKA| +2024-09-11 15:49:48.6766|DEBUG|EDOKA| +2024-09-11 15:49:50.1191|DEBUG|EDOKA| +2024-09-11 15:49:50.1291|DEBUG|EDOKA| +2024-09-11 15:49:50.1291|DEBUG|EDOKA| +2024-09-11 15:49:50.1291|DEBUG|EDOKA| +2024-09-11 15:49:51.9562|DEBUG|EDOKA| +2024-09-11 15:49:51.9834|DEBUG|EDOKA| +2024-09-11 15:50:10.8508|DEBUG|EDOKA| +2024-09-11 15:50:12.7643|DEBUG|EDOKA| +2024-09-11 15:50:12.7993|DEBUG|EDOKA| +2024-09-11 15:50:12.8224|DEBUG|EDOKA| +2024-09-11 15:50:12.8778|DEBUG|EDOKA| +2024-09-11 15:50:14.3529|DEBUG|EDOKA| +2024-09-11 15:50:14.3635|DEBUG|EDOKA| +2024-09-11 15:50:14.3635|DEBUG|EDOKA| +2024-09-11 15:50:14.3635|DEBUG|EDOKA| +2024-09-11 15:50:16.2951|DEBUG|EDOKA| +2024-09-11 15:50:16.3369|DEBUG|EDOKA| +2024-09-11 15:50:26.6680|DEBUG|EDOKA| +2024-09-11 15:50:36.4748|DEBUG|EDOKA| +2024-09-11 15:50:38.2143|DEBUG|EDOKA| +2024-09-11 15:50:38.2481|DEBUG|EDOKA| +2024-09-11 15:50:38.2641|DEBUG|EDOKA| +2024-09-11 15:50:38.2932|DEBUG|EDOKA| +2024-09-11 15:50:40.0379|DEBUG|EDOKA| +2024-09-11 15:50:40.0491|DEBUG|EDOKA| +2024-09-11 15:50:40.0491|DEBUG|EDOKA| +2024-09-11 15:50:40.0491|DEBUG|EDOKA| +2024-09-11 15:50:41.7754|DEBUG|EDOKA| +2024-09-11 15:50:41.8050|DEBUG|EDOKA| diff --git a/Client/obj/Debug/Client.csproj.AssemblyReference.cache b/Client/obj/Debug/Client.csproj.AssemblyReference.cache index 3048d598..01bff1e2 100644 Binary files a/Client/obj/Debug/Client.csproj.AssemblyReference.cache and b/Client/obj/Debug/Client.csproj.AssemblyReference.cache differ diff --git a/Client/obj/Debug/Client.csproj.GenerateResource.cache b/Client/obj/Debug/Client.csproj.GenerateResource.cache index ffc3e98f..314fdcea 100644 Binary files a/Client/obj/Debug/Client.csproj.GenerateResource.cache and b/Client/obj/Debug/Client.csproj.GenerateResource.cache differ diff --git a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache index 16da8a98..6668d33c 100644 Binary files a/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Client/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Client/obj/Debug/OnDoc.exe b/Client/obj/Debug/OnDoc.exe index 221f7cff..85fb441c 100644 Binary files a/Client/obj/Debug/OnDoc.exe and b/Client/obj/Debug/OnDoc.exe differ diff --git a/Client/obj/Debug/OnDoc.pdb b/Client/obj/Debug/OnDoc.pdb index 6e3f5626..7ff980d5 100644 Binary files a/Client/obj/Debug/OnDoc.pdb and b/Client/obj/Debug/OnDoc.pdb differ diff --git a/Client/obj/Debug/de-DE/OnDoc.resources.dll b/Client/obj/Debug/de-DE/OnDoc.resources.dll index fc8e647e..a9630f26 100644 Binary files a/Client/obj/Debug/de-DE/OnDoc.resources.dll and b/Client/obj/Debug/de-DE/OnDoc.resources.dll differ diff --git a/DOCGEN/Klassen/SynFWord.cs b/DOCGEN/Klassen/SynFWord.cs index 23d4fb82..bd06e68a 100644 --- a/DOCGEN/Klassen/SynFWord.cs +++ b/DOCGEN/Klassen/SynFWord.cs @@ -193,6 +193,10 @@ namespace DOCGEN.Klassen { Insert_Barcode(document, docdata); } + if (docdata.PrintLogo == true) + { + insert_Logo(document, docdata); + } //document.UpdateDocumentFields(); //document.UpdateAlternateChunks(); @@ -451,6 +455,32 @@ namespace DOCGEN.Klassen } } + public void insert_Logo(WordDocument document, clsDocData docData) + { + IWSection section = document.Sections[0]; + IWParagraph paragraph = section.HeadersFooters.Header.AddParagraph(); + System.Drawing.Image image = System.Drawing.Image.FromFile(@"E:\Software-Projekte\OnDoc\Images\tkb_logo_4c_u.jpg"); + paragraph.AppendPicture(image); + + ////Get the Word document section. + //IWSection section = document.Sections[0]; + ////Add a paragraph to the header. + //IWParagraph paragraph = section.HeadersFooters.Header.AddParagraph(); + //// Get the image stream. + //FileStream imageStream = new FileStream(@"../../../Data/Logo.jpg", FileMode.Open, FileAccess.Read); + ////Append the picture to the created paragraph. + //IWPicture picture = paragraph.AppendPicture(imageStream); + ////Set the picture properties. + //picture.TextWrappingStyle = TextWrappingStyle.InFrontOfText; + //picture.VerticalOrigin = VerticalOrigin.Margin; + //picture.VerticalPosition = -45; + //picture.HorizontalOrigin = HorizontalOrigin.Column; + //picture.HorizontalPosition = 263.5f; + //picture.WidthScale = 20; + //picture.HeightScale = 15; + + } + /// Word to PDF-Konverter /// Das sind die Remarks /// Base64-Dokument diff --git a/DOCGEN/bin/Debug/DOCGEN.dll b/DOCGEN/bin/Debug/DOCGEN.dll index 4639a6b4..95ae0f91 100644 Binary files a/DOCGEN/bin/Debug/DOCGEN.dll and b/DOCGEN/bin/Debug/DOCGEN.dll differ diff --git a/DOCGEN/bin/Debug/DOCGEN.pdb b/DOCGEN/bin/Debug/DOCGEN.pdb index 72b3cd12..33fb05e7 100644 Binary files a/DOCGEN/bin/Debug/DOCGEN.pdb and b/DOCGEN/bin/Debug/DOCGEN.pdb differ diff --git a/DOCGEN/bin/Debug/Model.dll b/DOCGEN/bin/Debug/Model.dll index da703637..6eb2010c 100644 Binary files a/DOCGEN/bin/Debug/Model.dll and b/DOCGEN/bin/Debug/Model.dll differ diff --git a/DOCGEN/bin/Debug/Model.pdb b/DOCGEN/bin/Debug/Model.pdb index 8e9c0b4d..7d29c933 100644 Binary files a/DOCGEN/bin/Debug/Model.pdb and b/DOCGEN/bin/Debug/Model.pdb differ diff --git a/DOCGEN/obj/Debug/DOCGEN.dll b/DOCGEN/obj/Debug/DOCGEN.dll index 4639a6b4..95ae0f91 100644 Binary files a/DOCGEN/obj/Debug/DOCGEN.dll and b/DOCGEN/obj/Debug/DOCGEN.dll differ diff --git a/DOCGEN/obj/Debug/DOCGEN.pdb b/DOCGEN/obj/Debug/DOCGEN.pdb index 72b3cd12..33fb05e7 100644 Binary files a/DOCGEN/obj/Debug/DOCGEN.pdb and b/DOCGEN/obj/Debug/DOCGEN.pdb differ diff --git a/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache b/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache index 471e22ba..aa96a963 100644 Binary files a/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache and b/DOCGEN/obj/Debug/DocGen.csproj.AssemblyReference.cache differ diff --git a/Database/bin/Debug/Model.dll b/Database/bin/Debug/Model.dll index da703637..6eb2010c 100644 Binary files a/Database/bin/Debug/Model.dll and b/Database/bin/Debug/Model.dll differ diff --git a/Database/bin/Debug/Model.pdb b/Database/bin/Debug/Model.pdb index 8e9c0b4d..7d29c933 100644 Binary files a/Database/bin/Debug/Model.pdb and b/Database/bin/Debug/Model.pdb differ diff --git a/Database/obj/Debug/Database.csproj.AssemblyReference.cache b/Database/obj/Debug/Database.csproj.AssemblyReference.cache index 22968914..213b6ec3 100644 Binary files a/Database/obj/Debug/Database.csproj.AssemblyReference.cache and b/Database/obj/Debug/Database.csproj.AssemblyReference.cache differ diff --git a/Model/bin/Debug/Model.dll b/Model/bin/Debug/Model.dll index da703637..6eb2010c 100644 Binary files a/Model/bin/Debug/Model.dll and b/Model/bin/Debug/Model.dll differ diff --git a/Model/bin/Debug/Model.pdb b/Model/bin/Debug/Model.pdb index 8e9c0b4d..7d29c933 100644 Binary files a/Model/bin/Debug/Model.pdb and b/Model/bin/Debug/Model.pdb differ diff --git a/Model/clsDocData.cs b/Model/clsDocData.cs index 8e9cae6e..09d33b8b 100644 --- a/Model/clsDocData.cs +++ b/Model/clsDocData.cs @@ -34,6 +34,7 @@ namespace Model public bool Barcode { get; set; } + public bool PrintLogo { get; set; } = false; public string UseEDOKA_Values { get; set; } public List DocValues {get;set;} diff --git a/Model/clsdocgendata.cs b/Model/clsdocgendata.cs index c68306a0..ffabde42 100644 --- a/Model/clsdocgendata.cs +++ b/Model/clsdocgendata.cs @@ -36,7 +36,9 @@ namespace Model public string team { get; set; } public string verantwortlich { get; set; } public string status { get; set; } - public Erstellungsart erstellungsart { get; set; } + public Erstellungsart erstellungsart { get; set; } + + public string logo { get; set; } = ""; public DataTable dokumentwerte { get; set; } } diff --git a/Model/obj/Debug/Model.dll b/Model/obj/Debug/Model.dll index da703637..6eb2010c 100644 Binary files a/Model/obj/Debug/Model.dll and b/Model/obj/Debug/Model.dll differ diff --git a/Model/obj/Debug/Model.pdb b/Model/obj/Debug/Model.pdb index 8e9c0b4d..7d29c933 100644 Binary files a/Model/obj/Debug/Model.pdb and b/Model/obj/Debug/Model.pdb differ diff --git a/Sonstige DateienError2024-09-11.log b/Sonstige DateienError2024-09-11.log new file mode 100644 index 00000000..371a5d0c --- /dev/null +++ b/Sonstige DateienError2024-09-11.log @@ -0,0 +1,10 @@ + + +Date:2024-09-11 15:12:41,616 +Thread:[1] +Level:ERROR +Logger:InsertBlazorCode.SyncfusionCodeGeneratorMenuCommand [(null)] +Message:System.ArgumentException: Der Pfad hat ein ungültiges Format. + bei System.IO.Path.NormalizePath(String path, Boolean fullCheck, Int32 maxPathLength, Boolean expandShortPaths) + bei System.IO.Path.InternalGetDirectoryName(String path) + bei InsertBlazorCode.SyncfusionCodeGeneratorMenuCommand.queryStatusMenuCommand_BeforeQueryStatus(Object sender, EventArgs e) in C:\Git\RP\vsext_insertblazorcode\SyncfusionBlazorcodegenerator\SyncfusionCodeGeneratorMenuCommand.cs:Zeile 331.