Update 20240909
This commit is contained in:
34
Client/Diverses/NativVorlagen.Designer.cs
generated
34
Client/Diverses/NativVorlagen.Designer.cs
generated
@@ -36,6 +36,8 @@
|
||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
|
||||
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.fileSystemWatcher1)).BeginInit();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
@@ -52,7 +54,7 @@
|
||||
//
|
||||
// treeView
|
||||
//
|
||||
this.treeView.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.treeView.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.treeView.FullRowSelect = true;
|
||||
this.treeView.HotTracking = true;
|
||||
this.treeView.ImageIndex = 0;
|
||||
@@ -60,7 +62,7 @@
|
||||
this.treeView.Location = new System.Drawing.Point(2, 61);
|
||||
this.treeView.Name = "treeView";
|
||||
this.treeView.SelectedImageIndex = 0;
|
||||
this.treeView.Size = new System.Drawing.Size(436, 387);
|
||||
this.treeView.Size = new System.Drawing.Size(296, 387);
|
||||
this.treeView.TabIndex = 1;
|
||||
this.treeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_NodeMouseDoubleClick);
|
||||
//
|
||||
@@ -77,7 +79,7 @@
|
||||
this.toolStripButton2});
|
||||
this.toolStrip1.Location = new System.Drawing.Point(2, 2);
|
||||
this.toolStrip1.Name = "toolStrip1";
|
||||
this.toolStrip1.Size = new System.Drawing.Size(436, 59);
|
||||
this.toolStrip1.Size = new System.Drawing.Size(529, 59);
|
||||
this.toolStrip1.TabIndex = 2;
|
||||
this.toolStrip1.Text = "toolStrip1";
|
||||
//
|
||||
@@ -104,11 +106,32 @@
|
||||
this.toolStripButton2.Text = "Dokument erstellen";
|
||||
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Location = new System.Drawing.Point(316, 61);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(125, 13);
|
||||
this.label1.TabIndex = 3;
|
||||
this.label1.Text = "Dokument-Klassifizierung";
|
||||
//
|
||||
// button1
|
||||
//
|
||||
this.button1.Location = new System.Drawing.Point(319, 415);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(75, 23);
|
||||
this.button1.TabIndex = 4;
|
||||
this.button1.Text = "Erstellen";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// NativVorlagen
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(440, 450);
|
||||
this.ClientSize = new System.Drawing.Size(533, 450);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(this.label1);
|
||||
this.Controls.Add(this.treeView);
|
||||
this.Controls.Add(this.toolStrip1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
@@ -121,6 +144,7 @@
|
||||
this.toolStrip1.ResumeLayout(false);
|
||||
this.toolStrip1.PerformLayout();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
@@ -131,5 +155,7 @@
|
||||
private System.Windows.Forms.ToolStrip toolStrip1;
|
||||
private System.Windows.Forms.ToolStripButton toolStripButton1;
|
||||
private System.Windows.Forms.ToolStripButton toolStripButton2;
|
||||
private System.Windows.Forms.Label label1;
|
||||
private System.Windows.Forms.Button button1;
|
||||
}
|
||||
}
|
||||
@@ -18,11 +18,13 @@ using System.Xml.Linq;
|
||||
using Syncfusion.Compression.Zip;
|
||||
using static System.Net.Mime.MediaTypeNames;
|
||||
using System.Diagnostics;
|
||||
using Microsoft.Office.Interop.Word;
|
||||
|
||||
namespace OnDoc.Diverses
|
||||
{
|
||||
public partial class NativVorlagen : SfForm
|
||||
{
|
||||
private int TotalKlassifizierung = 0;
|
||||
public NativVorlagen()
|
||||
{
|
||||
InitializeComponent();
|
||||
@@ -34,6 +36,25 @@ namespace OnDoc.Diverses
|
||||
private void NativVorlagen_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
string line = "";
|
||||
int i = 1;
|
||||
StreamReader sr = new StreamReader(Properties.Settings.Default.NativVorlagen+@"\klassifizierung.txt");
|
||||
line = sr.ReadLine();
|
||||
while (line != null)
|
||||
{
|
||||
RadioButton rb = new RadioButton();
|
||||
rb.Name = "rb"+i.ToString();
|
||||
rb.Text = line;
|
||||
rb.Left = label1.Left;
|
||||
rb.Top = label1.Top + (i*25);
|
||||
rb.Width = 180;
|
||||
i++;
|
||||
this.Controls.Add(rb);
|
||||
line = sr.ReadLine();
|
||||
}
|
||||
sr.Close();
|
||||
TotalKlassifizierung = i - 1;
|
||||
|
||||
string ext = "";
|
||||
DirectoryInfo directoryInfo = new DirectoryInfo(Properties.Settings.Default.NativVorlagen);
|
||||
if (directoryInfo.Exists)
|
||||
@@ -49,7 +70,7 @@ namespace OnDoc.Diverses
|
||||
|
||||
foreach (FileInfo file in directoryInfo.GetFiles())
|
||||
{
|
||||
if (file.Exists)
|
||||
if (file.Exists && file.Name!="klassifizierung.txt")
|
||||
{
|
||||
|
||||
ext = System.IO.Path.GetExtension(file.Name);
|
||||
@@ -89,7 +110,7 @@ namespace OnDoc.Diverses
|
||||
node.ImageIndex = node.SelectedImageIndex = 3;
|
||||
foreach (FileInfo file in directory.GetFiles())
|
||||
{
|
||||
if (file.Exists)
|
||||
if (file.Exists && file.Name!="klassifizierung.txt")
|
||||
{
|
||||
TreeNode tnnew = new TreeNode();
|
||||
tnnew.Text = file.Name;
|
||||
@@ -149,6 +170,8 @@ namespace OnDoc.Diverses
|
||||
|
||||
foreach (var file in directoryInfo.GetFiles())
|
||||
{
|
||||
if (file.Name != "klassifizierung.txt")
|
||||
{
|
||||
TreeNodeAdv tnnew = new TreeNodeAdv(file.Name);
|
||||
ext = System.IO.Path.GetExtension(tnnew.Text);
|
||||
if (ext.Length > 2)
|
||||
@@ -164,6 +187,7 @@ namespace OnDoc.Diverses
|
||||
|
||||
currentNode.Nodes.Add(tnnew);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -188,6 +212,22 @@ namespace OnDoc.Diverses
|
||||
}
|
||||
private void Execute(TreeNode treeNode)
|
||||
{
|
||||
string klassifizierung = "";
|
||||
try
|
||||
{
|
||||
for (int i = 0; i < TotalKlassifizierung; i++)
|
||||
{
|
||||
RadioButton rb = this.Controls.Find("rb" + i.ToString(), true).FirstOrDefault() as RadioButton;
|
||||
if (rb != null)
|
||||
{
|
||||
if (rb.Checked)
|
||||
{
|
||||
klassifizierung = rb.Text;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
try
|
||||
{
|
||||
string tempfilename = treeNode.Tag.ToString();
|
||||
@@ -205,8 +245,8 @@ namespace OnDoc.Diverses
|
||||
case ".D":
|
||||
DOCGEN.Klassen.SynFWord sf = new DOCGEN.Klassen.SynFWord();
|
||||
tempfilename1 = System.IO.Path.GetFileName(tempfilename);
|
||||
tempfilename1 = AppParams.tempdir + "" + DateTime.Now.ToString("yyyyddmmhhMMss") + tempfilename1;
|
||||
sf.create_nativ_word("Klassifikation", "Wahnsinnig geheim", "", tempfilename, tempfilename1);
|
||||
tempfilename1 = AppParams.tempdir + "" + DateTime.Now.ToString("yyyyMMddhhmmss") + tempfilename1;
|
||||
sf.create_nativ("Klassifikation", klassifizierung, "", tempfilename, tempfilename1);
|
||||
System.Diagnostics.Process.Start("winword.exe", " /t" + tempfilename1);
|
||||
|
||||
//System.Diagnostics.Process.Start("winword.exe", " /t" + tempfilename);
|
||||
@@ -214,28 +254,36 @@ namespace OnDoc.Diverses
|
||||
case ".X":
|
||||
DOCGEN.Klassen.SynFExcel ef = new DOCGEN.Klassen.SynFExcel();
|
||||
tempfilename1 = System.IO.Path.GetFileName(tempfilename);
|
||||
tempfilename1 = AppParams.tempdir + "" + DateTime.Now.ToString("yyyyddmmhhMMss") + tempfilename1;
|
||||
tempfilename1 = AppParams.tempdir + "" + DateTime.Now.ToString("yyyyMMddhhmmss") + tempfilename1;
|
||||
|
||||
ef.create_nativ_excel("Klassifikation", "Wahnsinnig geheim", "", tempfilename, tempfilename1);
|
||||
ef.create_nativ("Klassifikation", klassifizierung, "", tempfilename, tempfilename1);
|
||||
|
||||
System.Diagnostics.Process.Start("excel.exe", " /t " + tempfilename1);
|
||||
break;
|
||||
case ".P":
|
||||
System.Diagnostics.Process.Start("POWERPNT.EXE", " /N " + tempfilename);
|
||||
DOCGEN.Klassen.SyncFPowerPoint pf = new DOCGEN.Klassen.SyncFPowerPoint();
|
||||
tempfilename1 = System.IO.Path.GetFileName(tempfilename);
|
||||
tempfilename1 = AppParams.tempdir + "" + DateTime.Now.ToString("yyyyMMddhhmmss") + tempfilename1;
|
||||
pf.create_nativ("Klassifikation",klassifizierung,"",tempfilename,tempfilename1);
|
||||
System.Diagnostics.Process.Start("POWERPNT.EXE", " /N " + tempfilename1);
|
||||
break;
|
||||
default:
|
||||
tempfilename1 = System.IO.Path.GetFileName(tempfilename);
|
||||
tempfilename1 = AppParams.tempdir+ "" + DateTime.Now.ToString("yyyyddmmhhMMss")+tempfilename1;
|
||||
tempfilename1 = AppParams.tempdir+ "" + DateTime.Now.ToString("yyyyMMddhhmmss") +tempfilename1;
|
||||
System.IO.File.Copy(tempfilename,tempfilename1, true);
|
||||
Process.Start(tempfilename1);
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
catch { }
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
Execute(this.treeView.SelectedNode);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -124,8 +124,8 @@
|
||||
<value>
|
||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB+
|
||||
DAAAAk1TRnQBSQFMAgEBBQEAASgBAAEoAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAB4
|
||||
DAAAAk1TRnQBSQFMAgEBBQEAATABAAEwAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||
AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||
@@ -154,31 +154,31 @@
|
||||
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
|
||||
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
|
||||
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/wEAAf8B8QjyBPEB/zEA
|
||||
AfMB9AcAAf8B1gH/AQAB9AHWAf8wAAHxAvQF8gHzAfIB9QL/AQAB9AHyMAAB8QH0Af8F9AH1AfIBAAH0
|
||||
AfECAAHyMAAB8QL0BfMB9AHyAfQB8wEJAvMB8jAAAfEB9AHzBvEB3QHxAfQB8QL0Af8wAAHxAfQB/wf1
|
||||
Af8BAAEJMwAB8QH0ARkHCQHzAQABCTMAAfEB9Aj/AgABCTMAAfEB9AHwAgkBGQYAAQkzAAHxAfQEAAH/
|
||||
BRkB8DMAAfEB9AQAAf8BCQHzAvQBGQHyMwAB8QH0BAAB/wEJAv8C8jQAAfEB9AQAAf8BCQH/AfIB8zUA
|
||||
AfQB8gH/AwAB/wEJAfAB8zcAAfIB1gQJAbwB8zsAAf8B8wHdAQkBtAHyCgAB/wHzAQgBuwFyAcIKAAH/
|
||||
AfQBGgEHAZMB8xYAAfIBGQG6AbMCsgEGArMB8gYAAfIBCAG7AXIDkAGLAXAB8gYAAfMBGgEHAY4FTAHz
|
||||
BgAB/wHDDJoBwwH/Ac4CrQOyAgYCswW0AbIBlgaQAYsBcAFyApgDkQGQA3UCbwRMAXUFdAF1AfQNegFZ
|
||||
AfQCzgGtA7ICBgGzAdsECQHzAbQBlgaQAXEBiwFyAZgBGQGYAZEBmAGRBHUBbwRMAQcEGgH0AXQB9A16
|
||||
AVkBwwLOAa0DsgIGAbMB2wQJAeIBtAGWAXEGkAGLAXIBmAEIApEBmAGRBHUBbwRMAQcEGgHzAXQB9A16
|
||||
AVkBwwLOAgkBsgHyAbMBBgGzAdsECQHzAbQClgGdAQgBlgH0AZYBkAGLAXIBmAEIAZgBkQGYAZEDdQHz
|
||||
AZMETAEHBBoB8wF0AfQNegFZAcMCzgIZAbMB/wEJAQYBsgHbBAkB8gG0A5YB8wEZAbsCkAGLAXIBmAEI
|
||||
AZgBkQG7AZEDdQHzAZMETAEHBBoB8wF0AfQNegFZAcMBzgGzAv8BCQH0ARkCBgHbBAkB8gG0ApYBcQG7
|
||||
Af8BlgKQAXEBcgGYAQgCmAG7AZEDdQLzAQcDTAMHARsC9AF0AfQNegFZAcMBzgHbARkB3QH/AQkB9AGy
|
||||
AQYB2wG7AwkB8gG0ApYBcQEIAfQBnQOQAXIBmAEIBJgDdQHzAQcB9AF1BkwC9AF0AfQNegFZAcMBzgMJ
|
||||
Af8BswEZAbQBBgEJAbsDCQHzAbQClgGdAfMBmAHzA5ABcgGYAQgCmAG7AboDdQHzAQcB9AF1BEwCkwEa
|
||||
Af8BmgH0DXoBWQHDAbQDswG0AbICtAEGAdsCuwEJAQgB8wG0BJYBkAGYAXICkAFyAZgBCAGYAboBuwG6
|
||||
A3UBGgHzAQcBbwRMARoBkwEHAf8BmgH0DVkBOAH0AbMDzgKtArIBBgG7AgkCGQHzAbQDlgFxBZABcgGY
|
||||
AQgCugG7AboFdQJvAkwBkwFMARoBTAEHAf8BmgHDDjgB9gGzA84CrQKyAQYBuwEJAxkB8wG0A5YBcQWQ
|
||||
AXIBmAEZAZ0BugG7AboFdQJvAkwBvAH0AfMBGgL/AZoBwwY4AVkG9AH2AQABswG0As4CrQOyAbMFtAHO
|
||||
A5YCcQSQAXICmAGdAroBlgF1AZMDdQJvAkwBkwUHAXUB9AY4Ab0IAAHyAQgBCQG0Ac4BrQOyAfIGAAHz
|
||||
AQgBuwGRAZYEkAHCBgAB8wEaAZkBkwF1A28BTAHzBgAB/wHDBJoBvQH/DAAB/wHzAd0BCQG0AfIKAAH/
|
||||
AfMBGQG7AZgB8woAAf8B9AEaAZkBkwHzFgABQgFNAT4HAAE+AwABKAMAAUADAAEgAwABAQEAAQEGAAEB
|
||||
FgAD/wIAAQEGAAE/AYgHAAEEBwABJhcAARcHAAEXBwABNwYAAQMB9wYAATwBBwYAATwBBwYAATwBDwYA
|
||||
ATwBHwYAARwBPwYAAYABfwYAAfABPwHwAT8B8AE/Av8BAAE/AQABPwEAAT9ZAAEBBwAB/wEAAT8BAAE/
|
||||
AQABPwEAAf8B8AE/AfABPwHwAT8C/ws=
|
||||
AfMB9AcAAf8B1gH/AQAB9AHWAf8wAAHxAvQF8gHzAfID/wEAAfQB8jAAAfEB9AH/BfQB/wHyAQAB9AHx
|
||||
AgAB8jAAAfEC9AXzAfQB8gH0AfMBCQLzAfIwAAHxAfQB8wbxAd0B8QH0AfEC9AH/MAAB8QH0Cf8BAAEJ
|
||||
MwAB8QH0ARkHCQHzAQABCTMAAfEB9Aj/AgABCTMAAfEB9AHwAgkBGQYAAQkzAAHxAfQEAAH/BRkB8DMA
|
||||
AfEB9AQAAf8BCQHzAvQBGQHyMwAB8QH0BAAB/wEJAv8C8jQAAfEB9AQAAf8BCQH/AfIB8zUAAfQB8gH/
|
||||
AwAB/wEJAfAB8zcAAfIB1gQJAbwB8zsAAf8B8wHdAQkBtAHyCgAB/wHzAQgBuwFyAcIKAAH/AfQBGgEH
|
||||
AZMB8xYAAfIBGQG6AbMCsgEGArMB8gYAAfIBCAG7AXIDkAGLAXAB8gYAAfMBGgEHAY4FTAHzBgAB/wHD
|
||||
DJoBwwH/Ac4CrQOyAgYCswW0AbIBlgaQAYsBcAFyApgDkQGQA3UCbwRMAXUFdAF1AfQNegFZAfQCzgGt
|
||||
A7ICBgGzAdsECQHzAbQBlgaQAXEBiwFyAZgBGQGYAZEBmAGRBHUBbwRMAQcEGgH0AXQB9A16AVkBwwLO
|
||||
Aa0DsgIGAbMB2wQJAeIBtAGWAXEGkAGLAXIBmAEIApEBmAGRBHUBbwRMAQcEGgHzAXQB9A16AVkBwwLO
|
||||
AgkBsgHyAbMBBgGzAdsECQHzAbQClgGdAQgBlgH0AZYBkAGLAXIBmAEIAZgBkQGYAZEDdQHzAZMETAEH
|
||||
BBoB8wF0AfQNegFZAcMCzgIZAbMB/wEJAQYBsgHbBAkB8gG0A5YB8wEZAbsCkAGLAXIBmAEIAZgBkQG7
|
||||
AZEDdQHzAZMETAEHBBoB8wF0AfQNegFZAcMBzgGzAv8BCQH0ARkCBgHbBAkB8gG0ApYBcQG7Af8BlgKQ
|
||||
AXEBcgGYAQgCmAG7AZEDdQLzAQcDTAMHARsC9AF0AfQNegFZAcMBzgHbARkB3QH/AQkB9AGyAQYB2wG7
|
||||
AwkB8gG0ApYBcQEIAfQBnQOQAXIBmAEIBJgDdQHzAQcB9AF1BkwC9AF0AfQNegFZAcMBzgMJAf8BswEZ
|
||||
AbQBBgEJAbsDCQHzAbQClgGdAfMBmAHzA5ABcgGYAQgCmAG7AboDdQHzAQcB9AF1BEwCkwEaAf8BmgH0
|
||||
DXoBWQHDAbQDswG0AbICtAEGAdsCuwEJAQgB8wG0BJYBkAGYAXICkAFyAZgBCAGYAboBuwG6A3UBGgHz
|
||||
AQcBbwRMARoBkwEHAf8BmgH0DVkBOAH0AbMDzgKtArIBBgG7AgkCGQHzAbQDlgFxBZABcgGYAQgCugG7
|
||||
AboFdQJvAkwBkwFMARoBTAEHAf8BmgHDDjgB9gGzA84CrQKyAQYBuwEJAxkB8wG0A5YBcQWQAXIBmAEZ
|
||||
AZ0BugG7AboFdQJvAkwBvAH0AfMBGgL/AZoBwwY4AVkG9AH2AQABswG0As4CrQOyAbMFtAHOA5YCcQSQ
|
||||
AXICmAGdAroBlgF1AZMDdQJvAkwBkwUHAXUB9AY4Ab0IAAHyAQgBCQG0Ac4BrQOyAfIGAAHzAQgBuwGR
|
||||
AZYEkAHCBgAB8wEaAZkBkwF1A28BTAHzBgAB/wHDBJoBvQH/DAAB/wHzAd0BCQG0AfIKAAH/AfMBGQG7
|
||||
AZgB8woAAf8B9AEaAZkBkwHzFgABQgFNAT4HAAE+AwABKAMAAUADAAEgAwABAQEAAQEGAAEBFgAD/wIA
|
||||
AQEGAAE/AYgHAAEEBwABJhcAARcHAAEXBwABNwYAAQMB9wYAATwBBwYAATwBBwYAATwBDwYAATwBHwYA
|
||||
ARwBPwYAAYABfwYAAfABPwHwAT8B8AE/Av8BAAE/AQABPwEAAT9ZAAEBBwAB/wEAAT8BAAE/AQABPwEA
|
||||
Af8B8AE/AfABPwHwAT8C/ws=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="fileSystemWatcher1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
|
||||
113
Client/UIControls/Administrator/Dokumenttyp.Designer.cs
generated
113
Client/UIControls/Administrator/Dokumenttyp.Designer.cs
generated
@@ -82,6 +82,7 @@
|
||||
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
||||
this.sfDataGrid1 = new Syncfusion.WinForms.DataGrid.SfDataGrid();
|
||||
this.grpVorlagenfeld = new System.Windows.Forms.GroupBox();
|
||||
this.lblFeldregel = new System.Windows.Forms.TextBox();
|
||||
this.txtTechbezeichnung = new System.Windows.Forms.TextBox();
|
||||
this.label13 = new System.Windows.Forms.Label();
|
||||
this.txtUIDescription = new System.Windows.Forms.TextBox();
|
||||
@@ -114,7 +115,10 @@
|
||||
this.lblfeldregeliddesc = new System.Windows.Forms.Label();
|
||||
this.lblID = new System.Windows.Forms.Label();
|
||||
this.lbliddesc = new System.Windows.Forms.Label();
|
||||
this.lblFeldregel = new System.Windows.Forms.TextBox();
|
||||
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();
|
||||
@@ -135,21 +139,24 @@
|
||||
this.splitContainer1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit();
|
||||
this.grpVorlagenfeld.SuspendLayout();
|
||||
this.toolStrip2.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// tabControlAdv1
|
||||
//
|
||||
this.tabControlAdv1.BeforeTouchSize = new System.Drawing.Size(1286, 641);
|
||||
this.tabControlAdv1.BeforeTouchSize = new System.Drawing.Size(1286, 671);
|
||||
this.tabControlAdv1.Controls.Add(this.tabPageAdv1);
|
||||
this.tabControlAdv1.Controls.Add(this.tabPageAdv2);
|
||||
this.tabControlAdv1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControlAdv1.Location = new System.Drawing.Point(2, 2);
|
||||
this.tabControlAdv1.Name = "tabControlAdv1";
|
||||
this.tabControlAdv1.Size = new System.Drawing.Size(1286, 641);
|
||||
this.tabControlAdv1.Size = new System.Drawing.Size(1286, 671);
|
||||
this.tabControlAdv1.TabIndex = 0;
|
||||
//
|
||||
// tabPageAdv1
|
||||
//
|
||||
this.tabPageAdv1.Controls.Add(this.toolStrip2);
|
||||
this.tabPageAdv1.Controls.Add(this.GrpUnterschrifte);
|
||||
this.tabPageAdv1.Controls.Add(this.GrpBewilligung);
|
||||
this.tabPageAdv1.Controls.Add(this.groupBox4);
|
||||
@@ -161,7 +168,7 @@
|
||||
this.tabPageAdv1.Location = new System.Drawing.Point(1, 25);
|
||||
this.tabPageAdv1.Name = "tabPageAdv1";
|
||||
this.tabPageAdv1.ShowCloseButton = true;
|
||||
this.tabPageAdv1.Size = new System.Drawing.Size(1283, 614);
|
||||
this.tabPageAdv1.Size = new System.Drawing.Size(1283, 644);
|
||||
this.tabPageAdv1.TabIndex = 1;
|
||||
this.tabPageAdv1.Text = "Allgemein";
|
||||
this.tabPageAdv1.ThemesEnabled = false;
|
||||
@@ -174,7 +181,7 @@
|
||||
this.GrpUnterschrifte.Controls.Add(this.cbFormularOhneUnterschrift);
|
||||
this.GrpUnterschrifte.Controls.Add(this.cbDigitaleUnterschrift);
|
||||
this.GrpUnterschrifte.Controls.Add(this.cbUnterschriftlinks);
|
||||
this.GrpUnterschrifte.Location = new System.Drawing.Point(13, 305);
|
||||
this.GrpUnterschrifte.Location = new System.Drawing.Point(13, 347);
|
||||
this.GrpUnterschrifte.Name = "GrpUnterschrifte";
|
||||
this.GrpUnterschrifte.Size = new System.Drawing.Size(488, 100);
|
||||
this.GrpUnterschrifte.TabIndex = 26;
|
||||
@@ -238,7 +245,7 @@
|
||||
//
|
||||
this.GrpBewilligung.Controls.Add(this.chkBewilligungFaksimileUnterschriften);
|
||||
this.GrpBewilligung.Controls.Add(this.chkBewilliigungZwingend);
|
||||
this.GrpBewilligung.Location = new System.Drawing.Point(13, 411);
|
||||
this.GrpBewilligung.Location = new System.Drawing.Point(13, 453);
|
||||
this.GrpBewilligung.Name = "GrpBewilligung";
|
||||
this.GrpBewilligung.Size = new System.Drawing.Size(488, 71);
|
||||
this.GrpBewilligung.TabIndex = 25;
|
||||
@@ -271,7 +278,7 @@
|
||||
this.groupBox4.Controls.Add(this.cbPDFDirekteArchivierung);
|
||||
this.groupBox4.Controls.Add(this.cbPDFDokument);
|
||||
this.groupBox4.Controls.Add(this.cbOfficeDokument);
|
||||
this.groupBox4.Location = new System.Drawing.Point(13, 489);
|
||||
this.groupBox4.Location = new System.Drawing.Point(13, 530);
|
||||
this.groupBox4.Name = "groupBox4";
|
||||
this.groupBox4.Size = new System.Drawing.Size(488, 102);
|
||||
this.groupBox4.TabIndex = 24;
|
||||
@@ -318,9 +325,9 @@
|
||||
// groupBox3
|
||||
//
|
||||
this.groupBox3.Controls.Add(this.TreeDokumentArt);
|
||||
this.groupBox3.Location = new System.Drawing.Point(517, 12);
|
||||
this.groupBox3.Location = new System.Drawing.Point(519, 51);
|
||||
this.groupBox3.Name = "groupBox3";
|
||||
this.groupBox3.Size = new System.Drawing.Size(651, 579);
|
||||
this.groupBox3.Size = new System.Drawing.Size(651, 581);
|
||||
this.groupBox3.TabIndex = 24;
|
||||
this.groupBox3.TabStop = false;
|
||||
this.groupBox3.Text = "Struktur";
|
||||
@@ -337,7 +344,7 @@
|
||||
treeNodeAdvStyleInfo1.TextColor = System.Drawing.Color.Black;
|
||||
this.TreeDokumentArt.BaseStylePairs.AddRange(new Syncfusion.Windows.Forms.Tools.StyleNamePair[] {
|
||||
new Syncfusion.Windows.Forms.Tools.StyleNamePair("Standard", treeNodeAdvStyleInfo1)});
|
||||
this.TreeDokumentArt.BeforeTouchSize = new System.Drawing.Size(312, 560);
|
||||
this.TreeDokumentArt.BeforeTouchSize = new System.Drawing.Size(312, 537);
|
||||
this.TreeDokumentArt.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
//
|
||||
//
|
||||
@@ -458,7 +465,7 @@
|
||||
treeNodeAdv4,
|
||||
treeNodeAdv9});
|
||||
this.TreeDokumentArt.SelectedNodeForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
this.TreeDokumentArt.Size = new System.Drawing.Size(312, 560);
|
||||
this.TreeDokumentArt.Size = new System.Drawing.Size(312, 537);
|
||||
this.TreeDokumentArt.TabIndex = 0;
|
||||
this.TreeDokumentArt.Text = "treeViewAdv1";
|
||||
this.TreeDokumentArt.ThemeStyle.TreeNodeAdvStyle.CheckBoxTickThickness = 0;
|
||||
@@ -481,7 +488,7 @@
|
||||
this.GroupBox2.Controls.Add(this.cbAnzeigeVorlagenauswahl);
|
||||
this.GroupBox2.Controls.Add(this.cbbezeichnungmutierbar);
|
||||
this.GroupBox2.Controls.Add(this.cbVertrag);
|
||||
this.GroupBox2.Location = new System.Drawing.Point(13, 186);
|
||||
this.GroupBox2.Location = new System.Drawing.Point(13, 228);
|
||||
this.GroupBox2.Name = "GroupBox2";
|
||||
this.GroupBox2.Size = new System.Drawing.Size(488, 113);
|
||||
this.GroupBox2.TabIndex = 4;
|
||||
@@ -556,7 +563,7 @@
|
||||
this.Grp1.Controls.Add(this.TxTBeschreibung);
|
||||
this.Grp1.Controls.Add(this.TxTBezeichnung);
|
||||
this.Grp1.Controls.Add(this.Label1);
|
||||
this.Grp1.Location = new System.Drawing.Point(13, 13);
|
||||
this.Grp1.Location = new System.Drawing.Point(13, 55);
|
||||
this.Grp1.Name = "Grp1";
|
||||
this.Grp1.Size = new System.Drawing.Size(488, 167);
|
||||
this.Grp1.TabIndex = 2;
|
||||
@@ -673,7 +680,7 @@
|
||||
this.tabPageAdv2.Location = new System.Drawing.Point(1, 25);
|
||||
this.tabPageAdv2.Name = "tabPageAdv2";
|
||||
this.tabPageAdv2.ShowCloseButton = true;
|
||||
this.tabPageAdv2.Size = new System.Drawing.Size(1283, 614);
|
||||
this.tabPageAdv2.Size = new System.Drawing.Size(1283, 644);
|
||||
this.tabPageAdv2.TabIndex = 2;
|
||||
this.tabPageAdv2.Text = "Voralgenfelder";
|
||||
this.tabPageAdv2.ThemesEnabled = false;
|
||||
@@ -687,11 +694,12 @@
|
||||
// splitContainer1.Panel1
|
||||
//
|
||||
this.splitContainer1.Panel1.Controls.Add(this.sfDataGrid1);
|
||||
this.splitContainer1.Panel1.Controls.Add(this.toolStrip1);
|
||||
//
|
||||
// splitContainer1.Panel2
|
||||
//
|
||||
this.splitContainer1.Panel2.Controls.Add(this.grpVorlagenfeld);
|
||||
this.splitContainer1.Size = new System.Drawing.Size(1283, 614);
|
||||
this.splitContainer1.Size = new System.Drawing.Size(1283, 644);
|
||||
this.splitContainer1.SplitterDistance = 930;
|
||||
this.splitContainer1.TabIndex = 0;
|
||||
//
|
||||
@@ -704,10 +712,9 @@
|
||||
this.sfDataGrid1.AutoSizeColumnsMode = Syncfusion.WinForms.DataGrid.Enums.AutoSizeColumnsMode.AllCells;
|
||||
this.sfDataGrid1.CopyOption = Syncfusion.WinForms.DataGrid.Enums.CopyOptions.None;
|
||||
this.sfDataGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.sfDataGrid1.Location = new System.Drawing.Point(0, 0);
|
||||
this.sfDataGrid1.Location = new System.Drawing.Point(0, 42);
|
||||
this.sfDataGrid1.Name = "sfDataGrid1";
|
||||
this.sfDataGrid1.SelectionMode = Syncfusion.WinForms.DataGrid.Enums.GridSelectionMode.Extended;
|
||||
this.sfDataGrid1.Size = new System.Drawing.Size(930, 614);
|
||||
this.sfDataGrid1.Size = new System.Drawing.Size(930, 602);
|
||||
this.sfDataGrid1.TabIndex = 1;
|
||||
this.sfDataGrid1.CellClick += new Syncfusion.WinForms.DataGrid.Events.CellClickEventHandler(this.sfDataGrid1_CellClick);
|
||||
//
|
||||
@@ -749,11 +756,21 @@
|
||||
this.grpVorlagenfeld.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.grpVorlagenfeld.Location = new System.Drawing.Point(0, 0);
|
||||
this.grpVorlagenfeld.Name = "grpVorlagenfeld";
|
||||
this.grpVorlagenfeld.Size = new System.Drawing.Size(349, 614);
|
||||
this.grpVorlagenfeld.Size = new System.Drawing.Size(349, 644);
|
||||
this.grpVorlagenfeld.TabIndex = 0;
|
||||
this.grpVorlagenfeld.TabStop = false;
|
||||
this.grpVorlagenfeld.Text = "Vorlagenfeld";
|
||||
//
|
||||
// lblFeldregel
|
||||
//
|
||||
this.lblFeldregel.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.lblFeldregel.Location = new System.Drawing.Point(135, 56);
|
||||
this.lblFeldregel.Multiline = true;
|
||||
this.lblFeldregel.Name = "lblFeldregel";
|
||||
this.lblFeldregel.ReadOnly = true;
|
||||
this.lblFeldregel.Size = new System.Drawing.Size(201, 63);
|
||||
this.lblFeldregel.TabIndex = 33;
|
||||
//
|
||||
// txtTechbezeichnung
|
||||
//
|
||||
this.txtTechbezeichnung.Location = new System.Drawing.Point(135, 230);
|
||||
@@ -1032,21 +1049,53 @@
|
||||
this.lbliddesc.TabIndex = 0;
|
||||
this.lbliddesc.Text = "ID";
|
||||
//
|
||||
// lblFeldregel
|
||||
// toolStrip2
|
||||
//
|
||||
this.lblFeldregel.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.lblFeldregel.Location = new System.Drawing.Point(135, 56);
|
||||
this.lblFeldregel.Multiline = true;
|
||||
this.lblFeldregel.Name = "lblFeldregel";
|
||||
this.lblFeldregel.ReadOnly = true;
|
||||
this.lblFeldregel.Size = new System.Drawing.Size(201, 63);
|
||||
this.lblFeldregel.TabIndex = 33;
|
||||
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);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(1290, 645);
|
||||
this.ClientSize = new System.Drawing.Size(1290, 675);
|
||||
this.Controls.Add(this.tabControlAdv1);
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Name = "Dokumenttyp";
|
||||
@@ -1079,6 +1128,10 @@
|
||||
((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.ResumeLayout(false);
|
||||
|
||||
}
|
||||
@@ -1161,5 +1214,9 @@
|
||||
private System.Windows.Forms.TextBox txtUIDescription;
|
||||
private System.Windows.Forms.Label label12;
|
||||
private System.Windows.Forms.TextBox lblFeldregel;
|
||||
private System.Windows.Forms.ToolStrip toolStrip2;
|
||||
private System.Windows.Forms.ToolStripButton toolStripButton1;
|
||||
private System.Windows.Forms.ToolStrip toolStrip1;
|
||||
private System.Windows.Forms.ToolStripButton toolStripButton2;
|
||||
}
|
||||
}
|
||||
@@ -117,6 +117,12 @@
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="toolStrip2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>122, 17</value>
|
||||
</metadata>
|
||||
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>227, 17</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
|
||||
@@ -157,6 +157,7 @@ namespace OnDoc.UIControls.Administrator
|
||||
|
||||
}
|
||||
MessageBox.Show("Dokumenttyp wurde gem. Vorgaben kopiert: Neue ID: " + NewDokTypKey.ToString());
|
||||
DialogResult = DialogResult.OK;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
31
Client/UIControls/DokList.Designer.cs
generated
31
Client/UIControls/DokList.Designer.cs
generated
@@ -96,7 +96,6 @@
|
||||
this.ribbonButtonPartnerSuche = new System.Windows.Forms.RibbonButton();
|
||||
this.ribbonGroupMitarbeiter = new System.Windows.Forms.RibbonItemGroup();
|
||||
this.ribbonLabelMitarbeiter = new System.Windows.Forms.RibbonLabel();
|
||||
this.ribbonComboBoxMitarbeiter = new System.Windows.Forms.RibbonComboBox();
|
||||
this.ribbonPannelDiverseVorlagen = new System.Windows.Forms.RibbonPanel();
|
||||
this.ribbonButtonNativ = new System.Windows.Forms.RibbonButton();
|
||||
this.RibbonTabAdmin = new System.Windows.Forms.RibbonTab();
|
||||
@@ -110,6 +109,7 @@
|
||||
this.RibbonButtonCreateNewDoc = new System.Windows.Forms.RibbonButton();
|
||||
this.lblToApprove = new System.Windows.Forms.Label();
|
||||
this.timer1 = new System.Windows.Forms.Timer(this.components);
|
||||
this.cbboxMitarbeiter = new Syncfusion.WinForms.ListView.SfComboBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit();
|
||||
this.ctxMenuDokList.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
@@ -118,6 +118,7 @@
|
||||
this.splitContainer1.Panel2.SuspendLayout();
|
||||
this.splitContainer1.SuspendLayout();
|
||||
this.panel2.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cbboxMitarbeiter)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// sfDataGrid1
|
||||
@@ -732,7 +733,6 @@
|
||||
// ribbonGroupMitarbeiter
|
||||
//
|
||||
this.ribbonGroupMitarbeiter.Items.Add(this.ribbonLabelMitarbeiter);
|
||||
this.ribbonGroupMitarbeiter.Items.Add(this.ribbonComboBoxMitarbeiter);
|
||||
this.ribbonGroupMitarbeiter.Name = "ribbonGroupMitarbeiter";
|
||||
//
|
||||
// ribbonLabelMitarbeiter
|
||||
@@ -741,14 +741,6 @@
|
||||
this.ribbonLabelMitarbeiter.Name = "ribbonLabelMitarbeiter";
|
||||
this.ribbonLabelMitarbeiter.Text = "Mitarbeiter";
|
||||
//
|
||||
// ribbonComboBoxMitarbeiter
|
||||
//
|
||||
this.ribbonComboBoxMitarbeiter.MaxSizeMode = System.Windows.Forms.RibbonElementSizeMode.Compact;
|
||||
this.ribbonComboBoxMitarbeiter.Name = "ribbonComboBoxMitarbeiter";
|
||||
this.ribbonComboBoxMitarbeiter.SelectedIndex = -1;
|
||||
this.ribbonComboBoxMitarbeiter.TextBoxText = "";
|
||||
this.ribbonComboBoxMitarbeiter.TextBoxWidth = 150;
|
||||
//
|
||||
// ribbonPannelDiverseVorlagen
|
||||
//
|
||||
this.ribbonPannelDiverseVorlagen.Items.Add(this.ribbonButtonNativ);
|
||||
@@ -849,10 +841,26 @@
|
||||
this.timer1.Interval = 60000;
|
||||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
||||
//
|
||||
// cbboxMitarbeiter
|
||||
//
|
||||
this.cbboxMitarbeiter.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
|
||||
this.cbboxMitarbeiter.BackColor = System.Drawing.SystemColors.ActiveCaption;
|
||||
this.cbboxMitarbeiter.DropDownPosition = Syncfusion.WinForms.Core.Enums.PopupRelativeAlignment.Center;
|
||||
this.cbboxMitarbeiter.Location = new System.Drawing.Point(1342, 71);
|
||||
this.cbboxMitarbeiter.Name = "cbboxMitarbeiter";
|
||||
this.cbboxMitarbeiter.Size = new System.Drawing.Size(121, 19);
|
||||
this.cbboxMitarbeiter.Style.DropDownStyle.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(100)))), ((int)(((byte)(100)))));
|
||||
this.cbboxMitarbeiter.Style.EditorStyle.BackColor = System.Drawing.SystemColors.ActiveCaption;
|
||||
this.cbboxMitarbeiter.Style.TokenStyle.CloseButtonBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
|
||||
this.cbboxMitarbeiter.TabIndex = 7;
|
||||
this.cbboxMitarbeiter.TabStop = false;
|
||||
this.cbboxMitarbeiter.SelectedValueChanged += new System.EventHandler(this.cbboxMitarbeiter_SelectedValueChanged);
|
||||
//
|
||||
// DokList
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.Controls.Add(this.cbboxMitarbeiter);
|
||||
this.Controls.Add(this.lblToApprove);
|
||||
this.Controls.Add(this.splitContainer1);
|
||||
this.Controls.Add(this.panel2);
|
||||
@@ -870,6 +878,7 @@
|
||||
this.splitContainer1.ResumeLayout(false);
|
||||
this.panel2.ResumeLayout(false);
|
||||
this.panel2.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.cbboxMitarbeiter)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
@@ -941,7 +950,6 @@
|
||||
private System.Windows.Forms.RibbonButton ribbonButtonPartnerSuche;
|
||||
private System.Windows.Forms.RibbonItemGroup ribbonGroupMitarbeiter;
|
||||
private System.Windows.Forms.RibbonLabel ribbonLabelMitarbeiter;
|
||||
private System.Windows.Forms.RibbonComboBox ribbonComboBoxMitarbeiter;
|
||||
private System.Windows.Forms.RibbonPanel ribbonPanel3;
|
||||
private System.Windows.Forms.RibbonButton RibbonButtonBerechtigungsgruppe;
|
||||
private System.Windows.Forms.RibbonButton ribbonButton2;
|
||||
@@ -957,5 +965,6 @@
|
||||
private System.Windows.Forms.RibbonButton ribbonButtonToApproval;
|
||||
private System.Windows.Forms.Timer timer1;
|
||||
private System.Windows.Forms.RibbonButton ribbonButtonRefresh_Bewilligungen;
|
||||
private Syncfusion.WinForms.ListView.SfComboBox cbboxMitarbeiter;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,14 +109,18 @@ namespace OnDoc.UICintrols
|
||||
DB db = new DB(AppParams.connectionstring);
|
||||
db.clear_parameter();
|
||||
db.Get_Tabledata("SP_Dokumentbearbeitung_Mitarbeiter", true, false);
|
||||
ribbonComboBoxMitarbeiter.DropDownItems.Clear();
|
||||
foreach (System.Data.DataRow r in db.dsdaten.Tables[0].Rows)
|
||||
{
|
||||
RibbonLabel rl = new RibbonLabel();
|
||||
rl.Text = r["name"].ToString();
|
||||
rl.Tag = Convert.ToInt32(r["mitarbeiternr"]);
|
||||
ribbonComboBoxMitarbeiter.DropDownItems.Add(rl);
|
||||
}
|
||||
cbboxMitarbeiter.DataSource = db.dsdaten.Tables[0];
|
||||
cbboxMitarbeiter.DisplayMember = "name";
|
||||
cbboxMitarbeiter.ValueMember = "mitarbeiternr";
|
||||
//cbboxMitarbeiter.Left=ribbonTextPartner.
|
||||
//ribbonComboBoxMitarbeiter.DropDownItems.Clear();
|
||||
//foreach (System.Data.DataRow r in db.dsdaten.Tables[0].Rows)
|
||||
//{
|
||||
// RibbonLabel rl = new RibbonLabel();
|
||||
// rl.Text = r["name"].ToString();
|
||||
// rl.Tag = Convert.ToInt32(r["mitarbeiternr"]);
|
||||
// ribbonComboBoxMitarbeiter.DropDownItems.Add(rl);
|
||||
//}
|
||||
}
|
||||
|
||||
public void refresh_dokumente()
|
||||
@@ -805,7 +809,22 @@ namespace OnDoc.UICintrols
|
||||
|
||||
private void ribbon2_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (ribbon2.ActiveTab.Text != "Funktionen")
|
||||
{
|
||||
lblToApprove.Visible= false;
|
||||
cbboxMitarbeiter.Visible= false;
|
||||
}
|
||||
else
|
||||
{
|
||||
lblToApprove.Visible= true;
|
||||
cbboxMitarbeiter.Visible = true;
|
||||
}
|
||||
}
|
||||
|
||||
private void cbboxMitarbeiter_SelectedValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
this.forMaNr = Convert.ToInt32(cbboxMitarbeiter.SelectedValue);
|
||||
refresh_dokumente();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Client/bin/Debug/Syncfusion.Presentation.Base.dll
Normal file
BIN
Client/bin/Debug/Syncfusion.Presentation.Base.dll
Normal file
Binary file not shown.
56875
Client/bin/Debug/Syncfusion.Presentation.Base.xml
Normal file
56875
Client/bin/Debug/Syncfusion.Presentation.Base.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -25970,3 +25970,765 @@
|
||||
2024-08-29 17:11:20.1107|DEBUG|EDOKA|
|
||||
2024-08-29 17:12:20.1104|DEBUG|EDOKA|
|
||||
2024-08-29 17:13:20.1070|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:37.7847|DEBUG|EDOKA|Start
|
||||
2024-08-30 07:23:37.8207|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:37.8247|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:37.8247|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:37.8427|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:38.0004|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:38.0734|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 07:23:40.8475|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:43.2890|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:43.3204|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:43.3264|DEBUG|EDOKA|
|
||||
2024-08-30 07:23:43.3264|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:39.4132|DEBUG|EDOKA|Start
|
||||
2024-08-30 07:27:39.4763|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:39.4832|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:39.4832|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:39.4942|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:39.5502|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:39.6257|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 07:27:42.2591|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:43.4750|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:43.5000|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:43.5000|DEBUG|EDOKA|
|
||||
2024-08-30 07:27:43.5210|DEBUG|EDOKA|
|
||||
2024-08-30 09:26:44.2264|DEBUG|EDOKA|Start
|
||||
2024-08-30 09:26:44.2890|DEBUG|EDOKA|
|
||||
2024-08-30 09:26:44.2960|DEBUG|EDOKA|
|
||||
2024-08-30 09:26:44.2960|DEBUG|EDOKA|
|
||||
2024-08-30 09:26:44.3090|DEBUG|EDOKA|
|
||||
2024-08-30 09:26:44.3604|DEBUG|EDOKA|
|
||||
2024-08-30 09:26:44.4248|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 09:27:57.0306|DEBUG|EDOKA|Start
|
||||
2024-08-30 09:27:57.0957|DEBUG|EDOKA|
|
||||
2024-08-30 09:27:57.0957|DEBUG|EDOKA|
|
||||
2024-08-30 09:27:57.0957|DEBUG|EDOKA|
|
||||
2024-08-30 09:27:57.1070|DEBUG|EDOKA|
|
||||
2024-08-30 09:27:57.1955|DEBUG|EDOKA|
|
||||
2024-08-30 09:27:57.2685|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 09:30:37.5580|DEBUG|EDOKA|Start
|
||||
2024-08-30 09:30:37.6235|DEBUG|EDOKA|
|
||||
2024-08-30 09:30:37.6235|DEBUG|EDOKA|
|
||||
2024-08-30 09:30:37.6235|DEBUG|EDOKA|
|
||||
2024-08-30 09:30:37.6345|DEBUG|EDOKA|
|
||||
2024-08-30 09:30:37.7025|DEBUG|EDOKA|
|
||||
2024-08-30 09:30:37.7751|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:28:49.7095|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:28:49.7728|DEBUG|EDOKA|
|
||||
2024-08-30 10:28:49.7801|DEBUG|EDOKA|
|
||||
2024-08-30 10:28:49.7801|DEBUG|EDOKA|
|
||||
2024-08-30 10:28:49.7919|DEBUG|EDOKA|
|
||||
2024-08-30 10:28:49.8401|DEBUG|EDOKA|
|
||||
2024-08-30 10:28:49.9059|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:29:25.3675|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:29:25.4081|DEBUG|EDOKA|
|
||||
2024-08-30 10:29:25.4081|DEBUG|EDOKA|
|
||||
2024-08-30 10:29:25.4151|DEBUG|EDOKA|
|
||||
2024-08-30 10:29:25.4151|DEBUG|EDOKA|
|
||||
2024-08-30 10:29:25.4812|DEBUG|EDOKA|
|
||||
2024-08-30 10:29:25.5495|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:31:38.3103|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:31:38.3718|DEBUG|EDOKA|
|
||||
2024-08-30 10:31:38.3718|DEBUG|EDOKA|
|
||||
2024-08-30 10:31:38.3718|DEBUG|EDOKA|
|
||||
2024-08-30 10:31:38.3837|DEBUG|EDOKA|
|
||||
2024-08-30 10:31:38.4448|DEBUG|EDOKA|
|
||||
2024-08-30 10:31:38.5094|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:33:57.8638|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:33:57.9261|DEBUG|EDOKA|
|
||||
2024-08-30 10:33:57.9306|DEBUG|EDOKA|
|
||||
2024-08-30 10:33:57.9306|DEBUG|EDOKA|
|
||||
2024-08-30 10:33:57.9306|DEBUG|EDOKA|
|
||||
2024-08-30 10:33:57.9901|DEBUG|EDOKA|
|
||||
2024-08-30 10:33:58.0532|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:34:58.0800|DEBUG|EDOKA|
|
||||
2024-08-30 10:35:45.9661|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:35:46.0303|DEBUG|EDOKA|
|
||||
2024-08-30 10:35:46.0303|DEBUG|EDOKA|
|
||||
2024-08-30 10:35:46.0303|DEBUG|EDOKA|
|
||||
2024-08-30 10:35:46.0443|DEBUG|EDOKA|
|
||||
2024-08-30 10:35:46.0976|DEBUG|EDOKA|
|
||||
2024-08-30 10:35:46.1626|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:45:45.9713|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:45:46.0356|DEBUG|EDOKA|
|
||||
2024-08-30 10:45:46.0415|DEBUG|EDOKA|
|
||||
2024-08-30 10:45:46.0415|DEBUG|EDOKA|
|
||||
2024-08-30 10:45:46.0415|DEBUG|EDOKA|
|
||||
2024-08-30 10:45:46.1114|DEBUG|EDOKA|
|
||||
2024-08-30 10:45:46.1841|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:46:35.7958|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:46:35.8590|DEBUG|EDOKA|
|
||||
2024-08-30 10:46:35.8590|DEBUG|EDOKA|
|
||||
2024-08-30 10:46:35.8590|DEBUG|EDOKA|
|
||||
2024-08-30 10:46:35.8700|DEBUG|EDOKA|
|
||||
2024-08-30 10:46:35.9292|DEBUG|EDOKA|
|
||||
2024-08-30 10:46:35.9985|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:47:44.9578|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:47:45.0209|DEBUG|EDOKA|
|
||||
2024-08-30 10:47:45.0209|DEBUG|EDOKA|
|
||||
2024-08-30 10:47:45.0249|DEBUG|EDOKA|
|
||||
2024-08-30 10:47:45.0249|DEBUG|EDOKA|
|
||||
2024-08-30 10:47:45.0930|DEBUG|EDOKA|
|
||||
2024-08-30 10:47:45.1628|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:48:30.8616|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:48:30.9256|DEBUG|EDOKA|
|
||||
2024-08-30 10:48:30.9316|DEBUG|EDOKA|
|
||||
2024-08-30 10:48:30.9316|DEBUG|EDOKA|
|
||||
2024-08-30 10:48:30.9316|DEBUG|EDOKA|
|
||||
2024-08-30 10:48:30.9954|DEBUG|EDOKA|
|
||||
2024-08-30 10:48:31.0654|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:49:31.0576|DEBUG|EDOKA|
|
||||
2024-08-30 10:50:04.1379|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:50:04.1744|DEBUG|EDOKA|
|
||||
2024-08-30 10:50:04.1744|DEBUG|EDOKA|
|
||||
2024-08-30 10:50:04.1744|DEBUG|EDOKA|
|
||||
2024-08-30 10:50:04.1857|DEBUG|EDOKA|
|
||||
2024-08-30 10:50:04.2377|DEBUG|EDOKA|
|
||||
2024-08-30 10:50:04.3039|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 10:51:04.2935|DEBUG|EDOKA|
|
||||
2024-08-30 10:52:04.2931|DEBUG|EDOKA|
|
||||
2024-08-30 10:53:04.2926|DEBUG|EDOKA|
|
||||
2024-08-30 10:54:04.2933|DEBUG|EDOKA|
|
||||
2024-08-30 10:55:04.2928|DEBUG|EDOKA|
|
||||
2024-08-30 10:56:04.2937|DEBUG|EDOKA|
|
||||
2024-08-30 10:57:04.2913|DEBUG|EDOKA|
|
||||
2024-08-30 10:58:04.2935|DEBUG|EDOKA|
|
||||
2024-08-30 10:59:10.5307|DEBUG|EDOKA|Start
|
||||
2024-08-30 10:59:10.5934|DEBUG|EDOKA|
|
||||
2024-08-30 10:59:10.5934|DEBUG|EDOKA|
|
||||
2024-08-30 10:59:10.5934|DEBUG|EDOKA|
|
||||
2024-08-30 10:59:10.6036|DEBUG|EDOKA|
|
||||
2024-08-30 10:59:10.6659|DEBUG|EDOKA|
|
||||
2024-08-30 10:59:10.7388|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 11:05:37.5164|DEBUG|EDOKA|Start
|
||||
2024-08-30 11:05:37.5812|DEBUG|EDOKA|
|
||||
2024-08-30 11:05:37.5886|DEBUG|EDOKA|
|
||||
2024-08-30 11:05:37.5886|DEBUG|EDOKA|
|
||||
2024-08-30 11:05:37.6026|DEBUG|EDOKA|
|
||||
2024-08-30 11:05:37.6650|DEBUG|EDOKA|
|
||||
2024-08-30 11:05:37.7384|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 11:06:13.6696|DEBUG|EDOKA|Start
|
||||
2024-08-30 11:06:13.7330|DEBUG|EDOKA|
|
||||
2024-08-30 11:06:13.7330|DEBUG|EDOKA|
|
||||
2024-08-30 11:06:13.7330|DEBUG|EDOKA|
|
||||
2024-08-30 11:06:13.7446|DEBUG|EDOKA|
|
||||
2024-08-30 11:06:13.7990|DEBUG|EDOKA|
|
||||
2024-08-30 11:06:13.8684|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 11:41:33.7256|DEBUG|EDOKA|Start
|
||||
2024-08-30 11:41:33.7909|DEBUG|EDOKA|
|
||||
2024-08-30 11:41:33.7909|DEBUG|EDOKA|
|
||||
2024-08-30 11:41:33.7909|DEBUG|EDOKA|
|
||||
2024-08-30 11:41:33.7909|DEBUG|EDOKA|
|
||||
2024-08-30 11:41:33.8666|DEBUG|EDOKA|
|
||||
2024-08-30 11:41:33.9389|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 12:45:29.4676|DEBUG|EDOKA|Start
|
||||
2024-08-30 12:45:29.5298|DEBUG|EDOKA|
|
||||
2024-08-30 12:45:29.5298|DEBUG|EDOKA|
|
||||
2024-08-30 12:45:29.5298|DEBUG|EDOKA|
|
||||
2024-08-30 12:45:29.5447|DEBUG|EDOKA|
|
||||
2024-08-30 12:45:29.6059|DEBUG|EDOKA|
|
||||
2024-08-30 12:45:29.6704|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 12:47:16.7338|DEBUG|EDOKA|Start
|
||||
2024-08-30 12:47:16.7980|DEBUG|EDOKA|
|
||||
2024-08-30 12:47:16.7980|DEBUG|EDOKA|
|
||||
2024-08-30 12:47:16.7980|DEBUG|EDOKA|
|
||||
2024-08-30 12:47:16.8100|DEBUG|EDOKA|
|
||||
2024-08-30 12:47:16.8604|DEBUG|EDOKA|
|
||||
2024-08-30 12:47:16.9289|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 12:50:16.2551|DEBUG|EDOKA|Start
|
||||
2024-08-30 12:50:16.3204|DEBUG|EDOKA|
|
||||
2024-08-30 12:50:16.3257|DEBUG|EDOKA|
|
||||
2024-08-30 12:50:16.3257|DEBUG|EDOKA|
|
||||
2024-08-30 12:50:16.3257|DEBUG|EDOKA|
|
||||
2024-08-30 12:50:16.3909|DEBUG|EDOKA|
|
||||
2024-08-30 12:50:16.4757|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 12:51:16.4622|DEBUG|EDOKA|
|
||||
2024-08-30 12:52:16.4639|DEBUG|EDOKA|
|
||||
2024-08-30 12:53:16.4631|DEBUG|EDOKA|
|
||||
2024-08-30 12:54:16.4671|DEBUG|EDOKA|
|
||||
2024-08-30 12:55:16.4667|DEBUG|EDOKA|
|
||||
2024-08-30 12:56:16.4650|DEBUG|EDOKA|
|
||||
2024-08-30 12:57:16.4637|DEBUG|EDOKA|
|
||||
2024-08-30 12:58:16.4656|DEBUG|EDOKA|
|
||||
2024-08-30 12:59:16.4617|DEBUG|EDOKA|
|
||||
2024-08-30 13:00:16.4628|DEBUG|EDOKA|
|
||||
2024-08-30 13:01:16.4631|DEBUG|EDOKA|
|
||||
2024-08-30 13:02:16.4617|DEBUG|EDOKA|
|
||||
2024-08-30 13:03:16.4635|DEBUG|EDOKA|
|
||||
2024-08-30 13:04:16.4675|DEBUG|EDOKA|
|
||||
2024-08-30 13:05:16.4685|DEBUG|EDOKA|
|
||||
2024-08-30 13:06:16.4658|DEBUG|EDOKA|
|
||||
2024-08-30 13:07:16.4686|DEBUG|EDOKA|
|
||||
2024-08-30 13:08:16.4637|DEBUG|EDOKA|
|
||||
2024-08-30 13:09:16.4631|DEBUG|EDOKA|
|
||||
2024-08-30 13:10:16.4646|DEBUG|EDOKA|
|
||||
2024-08-30 15:30:42.4783|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:30:42.5414|DEBUG|EDOKA|
|
||||
2024-08-30 15:30:42.5414|DEBUG|EDOKA|
|
||||
2024-08-30 15:30:42.5414|DEBUG|EDOKA|
|
||||
2024-08-30 15:30:42.5414|DEBUG|EDOKA|
|
||||
2024-08-30 15:30:42.6153|DEBUG|EDOKA|
|
||||
2024-08-30 15:30:42.6879|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:32:47.0469|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:32:47.1102|DEBUG|EDOKA|
|
||||
2024-08-30 15:32:47.1102|DEBUG|EDOKA|
|
||||
2024-08-30 15:32:47.1102|DEBUG|EDOKA|
|
||||
2024-08-30 15:32:47.1252|DEBUG|EDOKA|
|
||||
2024-08-30 15:32:47.2024|DEBUG|EDOKA|
|
||||
2024-08-30 15:32:47.2859|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:38:24.1155|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:38:24.1809|DEBUG|EDOKA|
|
||||
2024-08-30 15:38:24.1809|DEBUG|EDOKA|
|
||||
2024-08-30 15:38:24.1809|DEBUG|EDOKA|
|
||||
2024-08-30 15:38:24.1809|DEBUG|EDOKA|
|
||||
2024-08-30 15:38:24.2094|DEBUG|EDOKA|
|
||||
2024-08-30 15:38:24.2749|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:40:32.1026|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:40:32.1654|DEBUG|EDOKA|
|
||||
2024-08-30 15:40:32.1654|DEBUG|EDOKA|
|
||||
2024-08-30 15:40:32.1654|DEBUG|EDOKA|
|
||||
2024-08-30 15:40:32.1654|DEBUG|EDOKA|
|
||||
2024-08-30 15:40:32.1969|DEBUG|EDOKA|
|
||||
2024-08-30 15:40:32.2597|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:41:11.1778|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:24.5911|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:47:24.6575|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:24.6715|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:24.6715|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:24.6835|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:24.7015|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:24.7747|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:47:47.6494|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:47:47.7218|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:47.7218|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:47.7288|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:47.7288|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:47.7646|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:47.8406|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:47:56.0761|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:47:56.1401|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:56.1401|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:56.1401|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:56.1526|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:56.1701|DEBUG|EDOKA|
|
||||
2024-08-30 15:47:56.2349|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:48:21.2069|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:48:21.2709|DEBUG|EDOKA|
|
||||
2024-08-30 15:48:21.2759|DEBUG|EDOKA|
|
||||
2024-08-30 15:48:21.2759|DEBUG|EDOKA|
|
||||
2024-08-30 15:48:21.2899|DEBUG|EDOKA|
|
||||
2024-08-30 15:48:21.3091|DEBUG|EDOKA|
|
||||
2024-08-30 15:48:21.3723|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:48:46.0551|DEBUG|EDOKA|
|
||||
2024-08-30 15:49:32.3224|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:49:32.3856|DEBUG|EDOKA|
|
||||
2024-08-30 15:49:32.3856|DEBUG|EDOKA|
|
||||
2024-08-30 15:49:32.3856|DEBUG|EDOKA|
|
||||
2024-08-30 15:49:32.3856|DEBUG|EDOKA|
|
||||
2024-08-30 15:49:32.4161|DEBUG|EDOKA|
|
||||
2024-08-30 15:49:32.4896|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:50:07.5309|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:50:07.5931|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:07.5931|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:07.5931|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:07.6036|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:07.6215|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:07.6855|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:50:16.9664|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:50:17.0316|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:17.0316|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:17.0316|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:17.0437|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:17.0647|DEBUG|EDOKA|
|
||||
2024-08-30 15:50:17.1360|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:52:03.2321|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:52:03.2946|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:03.2946|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:03.2946|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:03.2946|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:03.3240|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:03.3923|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:52:14.7175|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:52:14.7801|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:14.7801|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:14.7801|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:14.7938|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:14.8160|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:14.8836|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:52:28.6453|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:52:28.7097|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:28.7149|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:28.7149|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:28.7149|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:28.7414|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:28.8109|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:52:39.6219|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:52:39.6851|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:39.6851|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:39.6851|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:39.7021|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:39.7216|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:39.7913|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:52:57.2947|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:52:57.3577|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:57.3577|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:57.3577|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:57.3703|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:57.3887|DEBUG|EDOKA|
|
||||
2024-08-30 15:52:57.4567|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:53:08.4952|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:53:08.5596|DEBUG|EDOKA|
|
||||
2024-08-30 15:53:08.5596|DEBUG|EDOKA|
|
||||
2024-08-30 15:53:08.5596|DEBUG|EDOKA|
|
||||
2024-08-30 15:53:08.5797|DEBUG|EDOKA|
|
||||
2024-08-30 15:53:08.6002|DEBUG|EDOKA|
|
||||
2024-08-30 15:53:08.6713|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:55:04.2832|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:55:04.3463|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:04.3463|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:04.3463|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:04.3553|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:04.3719|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:04.4354|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:55:09.0160|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:09.1390|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:09.1987|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:09.2947|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:09.4057|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:41.4652|DEBUG|EDOKA|
|
||||
2024-08-30 15:55:53.1856|DEBUG|EDOKA|
|
||||
2024-08-30 15:56:17.9192|DEBUG|EDOKA|
|
||||
2024-08-30 15:56:18.0173|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:11.4597|DEBUG|EDOKA|Start
|
||||
2024-08-30 15:57:11.5239|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:11.5279|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:11.5279|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:11.5279|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:11.5579|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:11.6290|DEBUG|EDOKA|Start - Ende
|
||||
2024-08-30 15:57:25.2373|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:28.5496|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:28.6760|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:28.7996|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:28.9322|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:29.0686|DEBUG|EDOKA|
|
||||
2024-08-30 15:57:35.7276|DEBUG|EDOKA|
|
||||
2024-08-30 15:58:15.3704|DEBUG|EDOKA|
|
||||
2024-08-30 15:58:15.4686|DEBUG|EDOKA|
|
||||
2024-08-30 15:59:11.6223|DEBUG|EDOKA|
|
||||
2024-08-30 16:00:11.6192|DEBUG|EDOKA|
|
||||
2024-08-30 16:00:50.1715|DEBUG|EDOKA|
|
||||
2024-08-30 16:00:57.4431|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:10.8525|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:11.6180|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:14.9705|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:16.6416|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:23.1862|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:23.9889|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:24.8689|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:28.5685|DEBUG|EDOKA|
|
||||
2024-08-30 16:01:36.9981|DEBUG|EDOKA|
|
||||
2024-09-02 10:43:21.6961|DEBUG|EDOKA|Start
|
||||
2024-09-02 10:43:21.7594|DEBUG|EDOKA|
|
||||
2024-09-02 10:43:21.7664|DEBUG|EDOKA|
|
||||
2024-09-02 10:43:21.7664|DEBUG|EDOKA|
|
||||
2024-09-02 10:43:21.7865|DEBUG|EDOKA|
|
||||
2024-09-02 10:43:21.9611|DEBUG|EDOKA|
|
||||
2024-09-02 10:43:22.0476|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-02 10:44:22.0869|DEBUG|EDOKA|
|
||||
2024-09-02 10:45:22.0530|DEBUG|EDOKA|
|
||||
2024-09-02 10:46:22.0498|DEBUG|EDOKA|
|
||||
2024-09-02 10:47:22.0508|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:20.2200|DEBUG|EDOKA|Start
|
||||
2024-09-02 10:48:20.2591|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:20.2591|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:20.2591|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:20.2731|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:20.2936|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:20.3646|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-02 10:48:25.4658|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:50.7789|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:53.4954|DEBUG|EDOKA|
|
||||
2024-09-02 10:48:56.9410|DEBUG|EDOKA|
|
||||
2024-09-02 10:49:16.7659|DEBUG|EDOKA|
|
||||
2024-09-02 10:49:20.3666|DEBUG|EDOKA|
|
||||
2024-09-02 10:49:22.6875|DEBUG|EDOKA|
|
||||
2024-09-02 10:49:26.1219|DEBUG|EDOKA|
|
||||
2024-09-02 10:49:31.3927|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:44.0298|DEBUG|EDOKA|Start
|
||||
2024-09-06 10:40:44.0759|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:44.0759|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:44.0880|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:44.0999|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:44.3290|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:44.3941|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-06 10:40:58.8281|DEBUG|EDOKA|
|
||||
2024-09-06 10:40:58.8352|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:07.3653|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:07.3653|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:11.2062|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:11.2366|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:11.2802|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:11.3186|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:16.6370|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:16.6757|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:17.5988|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:17.6328|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:17.6328|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:17.6328|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:17.6449|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:17.6840|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:25.8856|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:26.1047|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:26.1047|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:26.1252|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:26.1252|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:27.1448|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:27.2511|DEBUG|EDOKA|
|
||||
2024-09-06 10:41:44.4338|DEBUG|EDOKA|
|
||||
2024-09-06 10:42:44.3959|DEBUG|EDOKA|
|
||||
2024-09-06 10:43:44.3967|DEBUG|EDOKA|
|
||||
2024-09-06 10:44:44.3988|DEBUG|EDOKA|
|
||||
2024-09-06 10:45:44.3957|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:07.2560|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:07.2560|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.3559|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.3559|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.4356|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.4634|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.4730|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.4730|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.4730|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.4730|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.5437|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.5597|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.5707|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.5707|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.5707|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:13.6200|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:17.9035|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:17.9426|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:17.9426|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:17.9426|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:17.9426|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:17.9426|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.2516|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3006|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3244|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3244|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3244|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3244|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3244|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3244|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:32.3359|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.6873|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.7238|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.7238|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.7523|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8070|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8070|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8070|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8070|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8200|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8345|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8617|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8667|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8855|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:38.8855|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.0455|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.0455|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.0516|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.0516|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.1005|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.1005|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.1479|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.1479|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:39.8746|DEBUG|EDOKA|
|
||||
2024-09-06 10:46:44.3951|DEBUG|EDOKA|
|
||||
2024-09-06 10:47:44.3955|DEBUG|EDOKA|
|
||||
2024-09-06 10:48:44.3970|DEBUG|EDOKA|
|
||||
2024-09-06 10:49:44.3986|DEBUG|EDOKA|
|
||||
2024-09-06 10:50:44.3977|DEBUG|EDOKA|
|
||||
2024-09-06 10:51:44.3968|DEBUG|EDOKA|
|
||||
2024-09-06 10:52:44.3971|DEBUG|EDOKA|
|
||||
2024-09-06 10:53:44.3986|DEBUG|EDOKA|
|
||||
2024-09-06 10:53:59.0483|DEBUG|EDOKA|
|
||||
2024-09-06 10:54:02.1642|DEBUG|EDOKA|
|
||||
2024-09-06 10:54:07.6023|DEBUG|EDOKA|
|
||||
2024-09-06 10:54:44.3968|DEBUG|EDOKA|
|
||||
2024-09-06 10:55:44.3996|DEBUG|EDOKA|
|
||||
2024-09-06 11:37:28.2902|DEBUG|EDOKA|Start
|
||||
2024-09-06 11:37:28.3552|DEBUG|EDOKA|
|
||||
2024-09-06 11:37:28.3552|DEBUG|EDOKA|
|
||||
2024-09-06 11:37:28.3552|DEBUG|EDOKA|
|
||||
2024-09-06 11:37:28.3665|DEBUG|EDOKA|
|
||||
2024-09-06 11:37:28.3855|DEBUG|EDOKA|
|
||||
2024-09-06 11:37:28.4490|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-06 13:40:23.1068|DEBUG|EDOKA|Start
|
||||
2024-09-06 13:40:23.1708|DEBUG|EDOKA|
|
||||
2024-09-06 13:40:23.1708|DEBUG|EDOKA|
|
||||
2024-09-06 13:40:23.1758|DEBUG|EDOKA|
|
||||
2024-09-06 13:40:23.1758|DEBUG|EDOKA|
|
||||
2024-09-06 13:40:23.2023|DEBUG|EDOKA|
|
||||
2024-09-06 13:40:23.2703|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-06 13:40:44.5782|DEBUG|EDOKA|
|
||||
2024-09-06 13:40:51.8947|DEBUG|EDOKA|
|
||||
2024-09-06 13:41:23.2711|DEBUG|EDOKA|
|
||||
2024-09-06 13:42:20.6492|DEBUG|EDOKA|
|
||||
2024-09-06 13:42:23.2745|DEBUG|EDOKA|
|
||||
2024-09-06 13:43:23.2707|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:23.2746|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:53.6264|DEBUG|EDOKA|Start
|
||||
2024-09-06 13:44:53.6899|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:53.6949|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:53.6949|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:53.6949|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:53.7229|DEBUG|EDOKA|
|
||||
2024-09-06 13:44:53.7840|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-09 10:05:13.6138|DEBUG|EDOKA|Start
|
||||
2024-09-09 10:05:13.6482|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:13.6482|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:13.6482|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:13.6482|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:13.6717|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:13.7339|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-09 10:05:18.3357|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:18.3929|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:18.3989|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:19.6754|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:24.3486|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:24.3516|DEBUG|EDOKA|
|
||||
2024-09-09 10:05:24.3516|DEBUG|EDOKA|
|
||||
2024-09-09 10:06:13.7282|DEBUG|EDOKA|
|
||||
2024-09-09 10:07:13.7275|DEBUG|EDOKA|
|
||||
2024-09-09 10:08:13.7286|DEBUG|EDOKA|
|
||||
2024-09-09 10:09:13.7279|DEBUG|EDOKA|
|
||||
2024-09-09 10:10:13.7262|DEBUG|EDOKA|
|
||||
2024-09-09 10:11:13.7284|DEBUG|EDOKA|
|
||||
2024-09-09 10:12:13.7292|DEBUG|EDOKA|
|
||||
2024-09-09 10:13:13.7279|DEBUG|EDOKA|
|
||||
2024-09-09 10:14:13.7292|DEBUG|EDOKA|
|
||||
2024-09-09 10:15:13.7265|DEBUG|EDOKA|
|
||||
2024-09-09 10:16:13.7279|DEBUG|EDOKA|
|
||||
2024-09-09 10:17:13.7261|DEBUG|EDOKA|
|
||||
2024-09-09 10:18:13.7267|DEBUG|EDOKA|
|
||||
2024-09-09 10:19:09.3984|DEBUG|EDOKA|
|
||||
2024-09-09 10:19:13.7273|DEBUG|EDOKA|
|
||||
2024-09-09 10:19:14.1797|DEBUG|EDOKA|
|
||||
2024-09-09 10:20:13.7295|DEBUG|EDOKA|
|
||||
2024-09-09 10:21:13.7273|DEBUG|EDOKA|
|
||||
2024-09-09 10:22:13.7297|DEBUG|EDOKA|
|
||||
2024-09-09 10:22:44.7001|DEBUG|EDOKA|
|
||||
2024-09-09 10:22:48.3401|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:43.8486|DEBUG|EDOKA|Start
|
||||
2024-09-09 10:24:43.9116|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:43.9156|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:43.9156|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:43.9156|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:43.9366|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:43.9961|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-09 10:24:50.4208|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:54.7014|DEBUG|EDOKA|
|
||||
2024-09-09 10:24:56.2059|DEBUG|EDOKA|
|
||||
2024-09-09 11:04:37.1147|DEBUG|EDOKA|Start
|
||||
2024-09-09 11:04:37.1741|DEBUG|EDOKA|
|
||||
2024-09-09 11:04:37.1741|DEBUG|EDOKA|
|
||||
2024-09-09 11:04:37.1791|DEBUG|EDOKA|
|
||||
2024-09-09 11:04:37.1791|DEBUG|EDOKA|
|
||||
2024-09-09 11:04:37.1995|DEBUG|EDOKA|
|
||||
2024-09-09 11:04:37.2996|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-09 11:04:41.4209|DEBUG|EDOKA|
|
||||
2024-09-09 11:05:37.2903|DEBUG|EDOKA|
|
||||
2024-09-09 11:06:37.2902|DEBUG|EDOKA|
|
||||
2024-09-09 11:07:37.2908|DEBUG|EDOKA|
|
||||
2024-09-09 11:07:56.6643|DEBUG|EDOKA|
|
||||
2024-09-09 11:07:56.7003|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:00.1147|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:00.1507|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:14.2868|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:14.3248|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:14.3623|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:14.3978|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:20.4378|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:20.4839|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:22.2168|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:22.2263|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:22.2263|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:22.2263|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:22.2263|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:22.2654|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:24.5946|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:24.6246|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:24.6246|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:24.6366|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:24.6366|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:25.2618|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:25.2618|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:37.2925|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:40.0073|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:41.2027|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:42.0841|DEBUG|EDOKA|
|
||||
2024-09-09 11:08:44.2441|DEBUG|EDOKA|
|
||||
2024-09-09 11:16:13.5373|DEBUG|EDOKA|Start
|
||||
2024-09-09 11:16:13.6023|DEBUG|EDOKA|
|
||||
2024-09-09 11:16:13.6023|DEBUG|EDOKA|
|
||||
2024-09-09 11:16:13.6023|DEBUG|EDOKA|
|
||||
2024-09-09 11:16:13.6193|DEBUG|EDOKA|
|
||||
2024-09-09 11:16:13.6434|DEBUG|EDOKA|
|
||||
2024-09-09 11:16:13.7545|DEBUG|EDOKA|Start - Ende
|
||||
2024-09-09 11:16:22.7333|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:13.7448|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:45.0818|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:46.1894|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:53.2131|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:54.7857|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:55.8907|DEBUG|EDOKA|
|
||||
2024-09-09 11:17:56.8813|DEBUG|EDOKA|
|
||||
2024-09-09 11:18:13.7450|DEBUG|EDOKA|
|
||||
2024-09-09 11:19:13.7437|DEBUG|EDOKA|
|
||||
2024-09-09 11:20:13.7441|DEBUG|EDOKA|
|
||||
2024-09-09 11:21:13.7420|DEBUG|EDOKA|
|
||||
2024-09-09 11:22:13.7463|DEBUG|EDOKA|
|
||||
2024-09-09 11:23:13.7460|DEBUG|EDOKA|
|
||||
2024-09-09 11:24:13.7460|DEBUG|EDOKA|
|
||||
2024-09-09 11:25:13.7447|DEBUG|EDOKA|
|
||||
2024-09-09 11:26:13.7455|DEBUG|EDOKA|
|
||||
2024-09-09 11:27:13.7447|DEBUG|EDOKA|
|
||||
2024-09-09 11:28:13.7449|DEBUG|EDOKA|
|
||||
2024-09-09 11:29:13.7456|DEBUG|EDOKA|
|
||||
2024-09-09 11:30:13.7435|DEBUG|EDOKA|
|
||||
2024-09-09 11:31:13.7435|DEBUG|EDOKA|
|
||||
2024-09-09 11:32:13.7410|DEBUG|EDOKA|
|
||||
2024-09-09 11:33:13.7420|DEBUG|EDOKA|
|
||||
2024-09-09 11:34:13.7432|DEBUG|EDOKA|
|
||||
2024-09-09 11:35:13.7420|DEBUG|EDOKA|
|
||||
2024-09-09 11:36:13.7422|DEBUG|EDOKA|
|
||||
2024-09-09 11:37:13.7434|DEBUG|EDOKA|
|
||||
2024-09-09 11:38:13.7434|DEBUG|EDOKA|
|
||||
2024-09-09 11:39:13.7458|DEBUG|EDOKA|
|
||||
2024-09-09 11:40:13.7422|DEBUG|EDOKA|
|
||||
2024-09-09 11:41:13.7444|DEBUG|EDOKA|
|
||||
2024-09-09 11:42:13.7434|DEBUG|EDOKA|
|
||||
2024-09-09 11:43:13.7453|DEBUG|EDOKA|
|
||||
2024-09-09 11:44:13.7452|DEBUG|EDOKA|
|
||||
2024-09-09 11:45:13.7428|DEBUG|EDOKA|
|
||||
2024-09-09 11:46:13.7433|DEBUG|EDOKA|
|
||||
2024-09-09 11:47:13.7439|DEBUG|EDOKA|
|
||||
2024-09-09 11:48:13.7413|DEBUG|EDOKA|
|
||||
2024-09-09 11:49:13.7445|DEBUG|EDOKA|
|
||||
2024-09-09 11:50:13.7432|DEBUG|EDOKA|
|
||||
2024-09-09 11:51:13.7410|DEBUG|EDOKA|
|
||||
2024-09-09 11:52:13.7430|DEBUG|EDOKA|
|
||||
2024-09-09 11:53:13.7466|DEBUG|EDOKA|
|
||||
2024-09-09 11:54:13.7431|DEBUG|EDOKA|
|
||||
2024-09-09 11:55:13.7429|DEBUG|EDOKA|
|
||||
2024-09-09 11:56:13.7436|DEBUG|EDOKA|
|
||||
2024-09-09 11:57:13.7450|DEBUG|EDOKA|
|
||||
2024-09-09 11:58:13.7451|DEBUG|EDOKA|
|
||||
2024-09-09 11:59:13.7455|DEBUG|EDOKA|
|
||||
2024-09-09 12:00:13.7432|DEBUG|EDOKA|
|
||||
2024-09-09 12:01:13.7436|DEBUG|EDOKA|
|
||||
2024-09-09 12:02:13.7446|DEBUG|EDOKA|
|
||||
2024-09-09 12:03:13.7449|DEBUG|EDOKA|
|
||||
2024-09-09 12:04:13.7428|DEBUG|EDOKA|
|
||||
2024-09-09 12:05:13.7426|DEBUG|EDOKA|
|
||||
2024-09-09 12:06:13.7428|DEBUG|EDOKA|
|
||||
2024-09-09 12:07:13.7411|DEBUG|EDOKA|
|
||||
2024-09-09 12:08:13.7423|DEBUG|EDOKA|
|
||||
2024-09-09 12:09:13.7454|DEBUG|EDOKA|
|
||||
2024-09-09 12:10:13.7448|DEBUG|EDOKA|
|
||||
2024-09-09 12:11:13.7445|DEBUG|EDOKA|
|
||||
2024-09-09 12:12:13.7424|DEBUG|EDOKA|
|
||||
2024-09-09 12:13:13.7466|DEBUG|EDOKA|
|
||||
2024-09-09 12:14:13.7433|DEBUG|EDOKA|
|
||||
2024-09-09 12:15:13.7433|DEBUG|EDOKA|
|
||||
2024-09-09 12:16:13.7423|DEBUG|EDOKA|
|
||||
2024-09-09 12:17:13.7435|DEBUG|EDOKA|
|
||||
2024-09-09 12:18:13.7423|DEBUG|EDOKA|
|
||||
2024-09-09 12:19:13.7449|DEBUG|EDOKA|
|
||||
2024-09-09 12:20:13.7433|DEBUG|EDOKA|
|
||||
2024-09-09 12:21:13.7479|DEBUG|EDOKA|
|
||||
2024-09-09 12:22:13.7442|DEBUG|EDOKA|
|
||||
2024-09-09 12:23:13.7423|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:13.7417|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:23.1551|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:24.8342|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:27.3345|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:30.7814|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:31.8155|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:32.3760|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:36.2766|DEBUG|EDOKA|
|
||||
2024-09-09 12:24:39.0138|DEBUG|EDOKA|
|
||||
2024-09-09 12:25:05.7837|DEBUG|EDOKA|
|
||||
2024-09-09 12:25:06.6129|DEBUG|EDOKA|
|
||||
2024-09-09 12:25:07.3525|DEBUG|EDOKA|
|
||||
2024-09-09 12:25:13.7437|DEBUG|EDOKA|
|
||||
2024-09-09 12:26:13.7458|DEBUG|EDOKA|
|
||||
2024-09-09 12:27:13.7465|DEBUG|EDOKA|
|
||||
2024-09-09 12:28:13.7467|DEBUG|EDOKA|
|
||||
2024-09-09 12:29:13.7447|DEBUG|EDOKA|
|
||||
2024-09-09 12:30:13.7437|DEBUG|EDOKA|
|
||||
2024-09-09 12:31:13.7430|DEBUG|EDOKA|
|
||||
2024-09-09 12:32:13.7479|DEBUG|EDOKA|
|
||||
2024-09-09 12:33:13.7436|DEBUG|EDOKA|
|
||||
2024-09-09 12:34:13.7452|DEBUG|EDOKA|
|
||||
2024-09-09 12:35:13.7441|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:13.7458|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:39.8342|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:40.4000|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:41.4130|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:47.9037|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:49.6346|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:50.8387|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:52.7493|DEBUG|EDOKA|
|
||||
2024-09-09 12:36:53.3147|DEBUG|EDOKA|
|
||||
2024-09-09 12:37:13.7433|DEBUG|EDOKA|
|
||||
2024-09-09 12:38:13.7430|DEBUG|EDOKA|
|
||||
2024-09-09 12:39:13.7424|DEBUG|EDOKA|
|
||||
2024-09-09 12:40:13.7447|DEBUG|EDOKA|
|
||||
2024-09-09 12:41:13.7436|DEBUG|EDOKA|
|
||||
2024-09-09 12:42:13.7443|DEBUG|EDOKA|
|
||||
2024-09-09 12:42:49.4990|DEBUG|EDOKA|
|
||||
2024-09-09 12:42:50.5255|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:13.7435|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:17.7704|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:18.9886|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:22.3077|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:23.3178|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:47.3298|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:48.2491|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:55.9746|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:56.0197|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:58.3560|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:58.3670|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:58.4085|DEBUG|EDOKA|
|
||||
2024-09-09 12:43:58.4415|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:01.7469|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:01.7839|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:03.5237|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:03.5237|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:03.5392|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:03.5392|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:03.5392|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:03.5661|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:13.7459|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:26.8231|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:27.7260|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:45.6632|DEBUG|EDOKA|
|
||||
2024-09-09 12:44:46.6588|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:05.8266|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:06.9702|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:13.7450|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:34.0586|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:35.2013|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:37.9400|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:38.6458|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:39.1417|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:39.5821|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:39.9407|DEBUG|EDOKA|
|
||||
2024-09-09 12:45:46.5937|DEBUG|EDOKA|
|
||||
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|
|
||||
|
||||
Binary file not shown.
@@ -141,7 +141,6 @@ E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.DocIO.Base.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.XlsIO.Base.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.DocToPDFConverter.Base.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\OfficePrinter.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.OfficeChart.Base.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Database.pdb
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\DOCGEN.pdb
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\DOCGEN.xml
|
||||
@@ -155,7 +154,6 @@ E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.DocIO.Base.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.XlsIO.Base.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.DocToPDFConverter.Base.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\OfficePrinter.pdb
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.OfficeChart.Base.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\Client.csproj.AssemblyReference.cache
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\Client.csproj.SuggestedBindingRedirects.cache
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\OnDoc.exe.config
|
||||
@@ -201,3 +199,7 @@ E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\Client.csproj.Up2Date
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\OnDoc.exe
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\OnDoc.pdb
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\obj\Debug\OnDoc.UIControls.Administrator.frmDokTypCopy.resources
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.Presentation.Base.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.Presentation.Base.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.OfficeChart.Base.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\Client\bin\Debug\Syncfusion.OfficeChart.Base.xml
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user