Update 20240909

master
Stefan Hutter 1 year ago
parent 260cd3832e
commit bf8e19e19f

@ -176,6 +176,7 @@
<Compile Include="Controllers\HomeController.cs" />
<Compile Include="Controllers\OnBaseController.cs" />
<Compile Include="Controllers\ValuesController.cs" />
<Compile Include="Controllers\AntwortAdressController.cs" />
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>

@ -0,0 +1,78 @@
using DOCGEN;
using Model;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Runtime.Serialization.Formatters;
using System.Web.Http;
namespace EDOKAAPI_NetFramework.Controllers
{
public class AntwortAdresseController : ApiController
{
string connectionstring = ConfigurationManager.ConnectionStrings["EDOKAConnectionstring"].ConnectionString;
[HttpGet]
[Route("API/Antwortadresse/GetAll")]
public IHttpActionResult GetGetAll(string OutFormat = "JSON")
{
Database.DB db = new Database.DB(connectionstring);
string SQL = "Select * from Antwortadresse order by bezeichnung";
if (OutFormat == "JSON") { SQL = SQL + " for json path"; }
if (OutFormat=="XML") { SQL = SQL + " for xml path"; }
db.Get_Tabledata(SQL, false, true);
return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString());
}
[HttpGet]
[Route("API/Antwortadresse/GetByID")]
public IHttpActionResult GetByID(string ID,string OutFormat = "JSON")
{
Database.DB db = new Database.DB(connectionstring);
string SQL = "Select * from Antwortadresse where id="+ID;
if (OutFormat == "JSON") { SQL = SQL + " for json path"; }
if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
db.Get_Tabledata(SQL, false, true);
if (db.dsdaten.Tables[0].Rows.Count == 0) { return Ok(); } else { return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); };
}
[HttpGet]
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByTGNummer")]
public IHttpActionResult GetAllMitarbeiterByTGNummer(string tgnummer, string OutFormat = "JSON")
{
Database.DB db = new Database.DB(connectionstring);
string SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and tgnummer='"+tgnummer+"' order by bezeichnung ";
if (OutFormat == "JSON") { SQL = SQL + " for json path"; }
if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
db.Get_Tabledata(SQL, false, true);
if (db.dsdaten.Tables[0].Rows.Count == 0) { return Ok(); } else { return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); };
}
[HttpGet]
[Route("API/API/AntwortAdresse/GetAllMitarbeiterByMitarbeiterNr")]
public IHttpActionResult GetAllMitarbeiterByMitarbeiterNr(string Mitarbeiternr, string OutFormat = "JSON")
{
Database.DB db = new Database.DB(connectionstring);
string SQL = "Select * from AntwortAdresse_Mitarbeiter where aktiv=1 and Mitarbeiternr='" + Mitarbeiternr + "' ";
if (OutFormat == "JSON") { SQL = SQL + " for json path"; }
if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
db.Get_Tabledata(SQL, false, true);
if (db.dsdaten.Tables[0].Rows.Count == 0) {return Ok();} else {return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString());};
}
[HttpGet]
[Route("API/API/AntwortAdresse/GetMitarbeiterByID")]
public IHttpActionResult GetMitarbeiterByID(string ID, string OutFormat = "JSON")
{
Database.DB db = new Database.DB(connectionstring);
string SQL = "Select * from AntwortAdresse_Mitarbeiter where id="+ID;
if (OutFormat == "JSON") { SQL = SQL + " for json path"; }
if (OutFormat == "XML") { SQL = SQL + " for xml path"; }
db.Get_Tabledata(SQL, false, true);
if (db.dsdaten.Tables[0].Rows.Count == 0) { return Ok(); } else { return Ok(db.dsdaten.Tables[0].Rows[0][0].ToString()); };
}
}
}

@ -94,18 +94,21 @@ namespace API_NetFramework.Controllers
docgendata.inhaberadresse = "";
docgendata.zustelladresse = "";
docgendata.dokumenttypnr = Dokumenttypnr;
docgendata.unterschriftLinks = db.Get_Mitarbeiternr(TGUL).ToString(); ;
docgendata.unterschriftRehts = db.Get_Mitarbeiternr(TGUR).ToString(); ;
docgendata.verantwortlich = db.Get_Mitarbeiternr(TGResp).ToString(); ;
docgendata.unterschriftLinks = db.Get_Mitarbeiternr(TGUL).ToString();
docgendata.unterschriftRehts = db.Get_Mitarbeiternr(TGUR).ToString();
docgendata.verantwortlich = db.Get_Mitarbeiternr(TGResp).ToString();
docgendata.ersteller = db.Get_Mitarbeiternr(TGCreator).ToString();
docgendata.team = db.Get_Teamnr(docgendata.ersteller).ToString();
docgendata.digitaleunterschrift = false;
docgendata.frormularOhneUnterschrift = false;
docgendata.team = "";
//docgendata.team = "";
docgendata.zustaendigkube = db.Get_Mitarbeiternr(TGResp).ToString();
docgendata.status = "-1";
docgendata.dokumentdatum = DateTime.Now.ToString("dd.MM.YYYY");
docgendata.dokumentdatum = DateTime.Now.ToString("dd.MM.yyyy");
docgendata.bezeichnung = "";
docgendata.erstellungsart= Erstellungsart.DokumentAlsPDF;
docgendata.verantwortlich = db.Get_Mitarbeiternr(TGResp).ToString();
if (docgendata.verantwortlich=="0") { docgendata.verantwortlich = docgendata.ersteller; }
clsDocData dokdata = new clsDocData();
dokdata.PartnerNr = docgendata.partnernr;
@ -125,7 +128,12 @@ namespace API_NetFramework.Controllers
if (docgendata.digitaleunterschrift == true) { dokdata.As_Faksimile = "True"; } else { dokdata.As_Faksimile = "False"; }
string dokumentid = "";
dokumentid = db.Create_EDOKA_Doc(dokdata);
DOCGEN.Generator.DocGenerator_from_EDOKA Generator = new DOCGEN.Generator.DocGenerator_from_EDOKA(this.connectionstring);
clsdok dok = new clsdok("", "", "");
dok = Generator.Generate_Doc_EDOKA(dokumentid, ref dokdata);
db.Save_To_DB(dokumentid, "", dok.dokument);
return Ok(dokumentid);
}
private bool ParamCheck(string ParamType, string ParamValue)

@ -30,5 +30,12 @@ namespace API_NetFramework.Controllers
return Ok();
}
[HttpPost]
[Route("API/ArchivDocFromIRIS")]
public IHttpActionResult ArchivDocFromIRIS(string dokumentid)
{
return Ok();
}
}
}

@ -73,7 +73,15 @@
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -73,7 +73,15 @@
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Compression.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.OfficeChart.Base" publicKeyToken="3d67ed1f87d44c89" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.11.0" newVersion="26.2462.11.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

@ -2284,6 +2284,60 @@
<param name="args">Number and the number of digits</param>
<returns>Received amount</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeNominal(System.String)">
<summary>
This function computes the nominal interest rate based on the effective annual interest rate and the number of compounding periods per year.
</summary>
<param name="args">
A comma-separated string containing two values. The format should be: effective_rate, npery.
<list type="bullet">
<item><description><c>effective_rate</c>: The effective annual interest rate as a decimal (e.g., 0.053543 for 5.3543%).</description></item>
<item><description><c>npery</c>: The number of compounding periods per year as an integer (e.g., 4 for quarterly compounding).</description></item>
</list>
</param>
<returns>
A string representing the nominal interest rate. If the input is invalid or cannot be parsed, an error message is returned.
</returns>
<remarks>
The nominal interest rate is calculated using the formula:
<code>
nominalRate = npery * (Math.Pow(1 + effectRate, 1.0 / npery) - 1)
</code>
where <c>effectRate</c> is the effective annual interest rate and <c>npery</c> is the number of compounding periods per year.
The method checks that the effective annual interest rate is positive and that the number of compounding periods is at least 1.
If the inputs are invalid (e.g., non-numeric values, negative rates, or invalid period counts), an appropriate error message is returned.
</remarks>
</member>
<!-- Badly formed XML comment ignored for member "M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeMduration(System.String)" -->
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CalculateMduration(System.DateTime,System.DateTime,System.Double,System.Double,System.Int32,System.Int32)">
<summary>
Calculates the modified duration of a bond given its parameters.
</summary>
<param name="settlementDate">The bond's settlement date.</param>
<param name="maturityDate">The bond's maturity date.</param>
<param name="couponRate">The bond's annual coupon rate.</param>
<param name="yield">The bond's annual yield.</param>
<param name="frequency">The number of coupon payments per year.</param>
<param name="basis">The day count basis for the bond's interest calculation.</param>
<returns>The modified duration of the bond as a string.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputePduration(System.String)">
<summary>
This function computes the number of periods required for an investment to reach a specified future value based on the given interest rate and present value.
</summary>
<param name="args">
A comma-separated string of arguments. The format should be: rate, present_value, future_value.
<list type="bullet">
<item><description><c>rate</c>: The interest rate per period as a decimal (e.g., 0.025 for 2.5%).</description></item>
<item><description><c>present_value</c>: The current value of the investment.</description></item>
<item><description><c>future_value</c>: The desired future value of the investment.</description></item>
</list>
</param>
<returns>
A string representing the number of periods required to reach the future value, rounded to two decimal places.
If any input is invalid (e.g., negative values or non-numeric inputs), an error message is returned.
</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeAddress(System.String)">
<summary>
this function used to obtain the address of a cell in a worksheet, given specified row and column numbers
@ -3726,6 +3780,16 @@
Compute and append array horizontally and return array as string value.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputePhi(System.String)">
<summary>
This function computes and returns the value of the density function for a standard normal distribution.
</summary>
<param name="args">A string representing the numeric input for which PHI is to be calculated.</param>
<returns>
A formatted string representing the calculated PHI value.
If the input is invalid, an error message is returned indicating the type of error.
</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.Covariance(System.Double[],System.Double[])">
<summary>
Returns the sample covariance between two arrays.
@ -5156,6 +5220,78 @@
<param name="b">Number of times the event occurs in n trials.</param>
<returns></returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeGauss(System.String)">
<summary>
Calculates the standard normal cumulative distribution function (Gauss) for a given z-value.
This function returns the probability that a value from a standard normal distribution (with a mean of 0 and a standard deviation of 1) is less than or equal to the given z-value.
</summary>
<param name="args">
A string containing the arguments separated by commas. The format should be:
<c>"z"</c>
<list type="bullet">
<item><description><c>z</c>: The z-value for which you want to compute the cumulative distribution.</description></item>
</list>
</param>
<returns>
The probability that a value from a standard normal distribution is less than or equal to the given z-value.
</returns>
<remarks>
The Gauss function is used in statistics to determine the likelihood of a value falling within a specific range of a normal distribution.
This can be particularly useful in hypothesis testing or probability estimation scenarios.
</remarks>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeGamma(System.String)">
<summary>
Computes the gamma function for the specified input.
</summary>
<param name="args">A string representing the input number for which the gamma function will be calculated.</param>
<returns>A string representing the result of the gamma function calculation.</returns>
<remarks>
The gamma function is an extension of the factorial function to real and complex numbers.
</remarks>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CalculateGammaValue(System.String)">
<summary>
Calculate and return the gamma function value.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeVarS(System.String)">
<summary>
Computes the sample variance for a set of numbers.
</summary>
<param name="args">
A string containing a comma-separated list of numbers for which the sample variance will be calculated.
</param>
<returns>
A string representing the sample variance of the provided numbers.
</returns>
<remarks>
The sample variance is a measure of the dispersion of data points in a sample, and is calculated by taking the average of the squared deviations from the mean.
</remarks>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeFrequency(System.String)">
<summary>
This function calculates how often values occur within a range of values, and then returns a vertical array of numbers.
</summary>
<param name="args">
A string containing two arguments separated by a comma. the format should be: data_array, bins_array.
<list type="bullet">
<item><description><c>data_array</c>: The range or array of data values you want to count.</description></item>
<item><description><c>bins_array</c>: The range or array of intervals to group the data values into.</description></item>
</list>
</param>
<returns>
A formatted string with the frequency counts separated by semicolons, or an error message if the input is invalid.
</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetFrequencyCounts(System.String[])">
<summary>
Calculates the frequency counts of numeric and date values from the provided source and bin arrays.
Text and blank values are ignored during processing.
</summary>
<param name="argValues">An array of strings representing the source and bin data ranges.</param>
<returns>A string representing the frequency counts separated by semicolons.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.TranslateText(System.String,System.String)">
<summary>
Return the value of TranslateText
@ -5802,6 +5938,184 @@
Compute and return the expanded arraay based on pad_with and rows and cols argument.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeWrapRows(System.String)">
<summary>
This function computes the vector (one-dimensional array) and returns the wrapped values.
</summary>
<param name="args">
The input arguments as a single string separated by commas.
The format is: vector, wrap_count, [pad_with]
<list type="bullet">
<item>
<description><c>vector</c>: The source one-dimensional array or range.</description>
</item>
<item>
<description><c>wrap_count</c>: The maximum number of values per row.</description>
</item>
<item>
<description><c>pad_with</c> [optional]: The value to pad the last row with if there are insufficient items to fill it.
If omitted, the missing values will be padded with #N/A (default).</description>
</item>
</list>
</param>
<returns>A string representing the wrapped rows or an error message.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.WrapValuesOfArray(System.String,System.String,System.String,System.Boolean)">
<summary>
Wraps the rows or columns of an array based on the specified wrap count and padWith.
</summary>
<param name="vector">The vector of values to be wrapped.</param>
<param name="wrapCount">The count at which to wrap the rows or columns.</param>
<param name="padWith">The value to pad with if necessary.</param>
<param name="isFormulaWrapRows">A boolean indicating whether to wrap rows (true) or columns (false).</param>
<returns>A string representing the wrapped rows or columns.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeWrapCols(System.String)">
<summary>
This function computes the vector (one-dimensional array) and returns the wrapped values.
</summary>
<param name="args">
The input arguments as a single string separated by commas.
The format is: vector, wrap_count, [pad_with]
<list type="bullet">
<item><description><c>vector</c>: The source one-dimensional array or range.</description></item>
<item><description><c>wrap_count</c>: The maximum number of values per column.</description></item>
<item><description><c>pad_with</c> [optional]: The value to pad the last column with if there are insufficient items to fill it.
If omitted, the missing values will be padded with #N/A (default).</description></item>
</list>
</param>
<returns>A string representing the wrapped columns or an error message.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ArgumentErrorCheck(System.String,System.String@,System.String@,System.String@)">
<summary>
Checks for error strings in the given arguments and extracts the range, wrap count, and pad width.
</summary>
<param name="args">The input arguments as a single string.</param>
<param name="vector">The extracted range of values.</param>
<param name="wrapCount">The extracted wrap count.</param>
<param name="padWith">The extracted pad width.</param>
<returns>A string representing any error found, or an empty string if no errors are found.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeSort(System.String)">
<summary>
This function sorts the contents of an array or range by columns or rows in ascending or descending order.
</summary>
<param name="args">
A string containing the arguments separated by commas. The format should be: "array, sort_index, sort_order, by_col".
<list type="bullet">
<item>
<description>
<c>array</c>: The array or range to be sorted.
</description>
</item>
<item>
<description>
<c>sort_index</c> [Optional]: The column or row index on which to base the sorting. If omitted, the first column or row is used.
</description>
</item>
<item>
<description>
<c>sort_order</c> [Optional]: Defines the sort order. If omitted, the default is ascending order.
<list type="bullet">
<item><description>1 or omitted - Ascending order (default).</description></item>
<item><description>-1 - Descending order.</description></item>
</list>
</description>
</item>
<item>
<description>
<c>by_col</c> [Optional]: A logical value indicating the direction of sorting. If omitted, the default is to sort by rows.
<list type="bullet">
<item><description>FALSE or omitted - Sort by row (default).</description></item>
<item><description>TRUE - Sort by column.</description></item>
</list>
</description>
</item>
</list>
</param>
<returns>A string representing the sorted array.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.PerformSortingOfRange(System.Collections.Generic.List{System.String},System.String,System.String,System.String,System.Int32)">
<summary>
Compute and sort the values from array or range
</summary>
<param name="range">Array values specified as a range</param>
<param name="sortIndex">Sort index is a column index from the range or array values</param>
<param name="sortOrder">Sorting order (1 for ascending, -1 for descending)</param>
<param name="byColumn">Scan by column (true/false)</param>
<returns>String of the sorted values</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.SortByRow(System.Collections.Generic.List{System.Collections.Generic.List{System.String}},System.Int32,System.Int32)">
<summary>
Sorts the structured data by the specified row index and order.
</summary>
<param name="data">Structured data as a list of lists</param>
<param name="sortIndex">Index of the row to sort by</param>
<param name="sortOrder">Order to sort by (1 for ascending, -1 for descending)</param>
<returns>Sorted structured data</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.SortByColumn(System.Collections.Generic.List{System.Collections.Generic.List{System.String}},System.Int32,System.Int32)">
<summary>
Sorts the structured data by the specified column and order.
</summary>
<param name="data">Structured data as a list of lists</param>
<param name="sortIndex">Index of the column to sort by</param>
<param name="sortOrder">Order to sort by (1 for ascending, -1 for descending)</param>
<returns>Sorted structured data</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CompareValues(System.String,System.String,System.Int32)">
<summary>
Compares two values for sorting based on the specified sort order.
</summary>
<param name="x">The first value to compare.</param>
<param name="y">The second value to compare.</param>
<param name="sortOrder">The sort order (1 for ascending, -1 for descending).</param>
<returns>An integer indicating the relative order of the values.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeSortBy(System.String)">
<summary>
This function sorts the contents of a range or array based on the values in corresponding ranges or arrays.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array, by_array1, sort_order1, by_array2, sort_order2,…".
<list type="bullet">
<item>
<description><c>array</c>: The array or range to sort.</description>
</item>
<item>
<description><c>by_array1</c>: The array or range to sort by.</description>
</item>
<item>
<description><c>sort_order1</c>: The order to use for sorting. Default is ascending.</description>
<list type="bullet">
<item><description>1 for ascending.</description></item>
<item><description>-1 for descending.</description></item>
</list>
</item>
</list>
</param>
<returns>A sorted range or array.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetValuesOfArrays(System.String[])">
<summary>
Retrieves the values of the specified arrays and performs sorting based on the provided criteria.
</summary>
<param name="args">An array of strings representing the arguments for the SORTBY function.</param>
<param name="sortOrders">A list of strings representing the sort orders for each byArray.</param>
<param name="byArrays">A list of strings representing the byArrays used for sorting.</param>
<returns>A string representing the sorted values.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.PerformSorting(System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String},System.Int32,System.Boolean)">
<summary>
Performs the sorting for the SORTBY function.
</summary>
<param name="valuesOfRangeOrArray">A list of strings representing the values of the initial array or range.</param>
<param name="allByArrays">A list of strings representing the byArrays used for sorting.</param>
<param name="allSortOrders">A list of strings representing the sort orders for each byArray.</param>
<param name="numberOfColumns1">The number of columns in the initial array or range.</param>
<returns>A string representing the sorted values.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeWebService(System.String)">
<summary>
Return the XML content of the given document
@ -6616,6 +6930,39 @@
</summary>
<value>To handle the calculation of the formula.</value>
</member>
<member name="T:Syncfusion.OfficeChart.Calculate.CustomComparer">
<summary>
The <c>CustomComparer</c> class provides a mechanism for comparing two strings based on a custom comparison logic.
It implements the <see cref="T:System.Collections.Generic.IComparer`1"/> interface to allow sorting or ordering operations on collections
of strings using the specified comparison logic.
</summary>
<remarks>
This class is particularly useful when you need to perform custom sorting or ordering of strings in a collection,
such as a list or array. The comparison logic is provided via a <see cref="T:System.Comparison`1"/> delegate, which
allows flexibility in defining how two strings should be compared.
</remarks>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CustomComparer.#ctor(System.Comparison{System.String})">
<summary>
Initializes a new instance of the <see cref="T:Syncfusion.OfficeChart.Calculate.CustomComparer"/> class with the specified comparison logic.
</summary>
<param name="comparison">A <see cref="T:System.Comparison`1"/> delegate that defines the logic for comparing two strings.</param>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CustomComparer.Compare(System.String,System.String)">
<summary>
Compares two strings and returns a value indicating whether one is less than, equal to, or greater than the other.
</summary>
<param name="x">The first string to compare.</param>
<param name="y">The second string to compare.</param>
<returns>
A signed integer that indicates the relative values of <paramref name="x"/> and <paramref name="y"/>:
<list type="bullet">
<item><description>Less than zero: <paramref name="x"/> is less than <paramref name="y"/>.</description></item>
<item><description>Zero: <paramref name="x"/> equals <paramref name="y"/>.</description></item>
<item><description>Greater than zero: <paramref name="x"/> is greater than <paramref name="y"/>.</description></item>
</list>
</returns>
</member>
<member name="T:Syncfusion.OfficeChart.Calculate.GridSheetFamilyItem">
<summary>
Encapsulates the properties that are needed to support multiple families of crossed-referenced grids.
@ -63135,6 +63482,11 @@
This method is called before clearing all elements.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Implementation.Collections.Grouping.WorksheetGroup.DetachEvents">
<summary>
Unbinds event handlers from the events if they are currently bound.
</summary>
</member>
<member name="E:Syncfusion.OfficeChart.Implementation.Collections.Grouping.WorksheetGroup.MissingFunction">
<summary>
Event raised when an unknown function is encountered.
@ -99023,11 +99375,6 @@
<!-- Badly formed XML comment ignored for member "F:Syncfusion.OfficeChart.Implementation.WorksheetImpl.format" -->
<!-- Badly formed XML comment ignored for member "F:Syncfusion.OfficeChart.Implementation.WorksheetImpl.dateTimeStyleIndex" -->
<!-- Badly formed XML comment ignored for member "F:Syncfusion.OfficeChart.Implementation.WorksheetImpl.m_dataTable" -->
<member name="M:Syncfusion.OfficeChart.Implementation.WorksheetImpl.#cctor">
<summary>
Static constructor.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Implementation.WorksheetImpl.#ctor(Syncfusion.OfficeChart.IApplication,System.Object)">
<summary>
Creates worksheet and set its Application and Parent
@ -100542,6 +100889,11 @@
The formatting and merges are not removed.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Implementation.WorksheetImpl.ClearAllData">
<summary>
Clears all data and resets the state of the object.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Implementation.WorksheetImpl.Contains(System.Int32,System.Int32)">
<summary>
Indicates whether a cell was initialized or accessed by the user.

File diff suppressed because it is too large Load Diff

@ -1 +1 @@
2f103ccc377fc18bf14a6c592853dc854e1395183150048ea7daa528d5cf7217
853cf8e909e75c5168a9275641c3a4e2804e2954a305e6bc5ee3b6c2ce5f0700

@ -256,3 +256,5 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetFramework.csp
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\API_NetF.7D617477.Up2Date
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\EDOKAAPI_NetFramework.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\EDOKAAPI_NetFramework.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.xml

@ -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;
@ -148,6 +169,8 @@ namespace OnDoc.Diverses
stack.Push(childDirectoryNode);
foreach (var file in directoryInfo.GetFiles())
{
if (file.Name != "klassifizierung.txt")
{
TreeNodeAdv tnnew = new TreeNodeAdv(file.Name);
ext = System.IO.Path.GetExtension(tnnew.Text);
@ -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">

@ -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
//
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;
// 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);
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;
}
}

@ -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.

File diff suppressed because it is too large Load Diff

@ -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|

@ -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.

@ -70,6 +70,9 @@
<Reference Include="Syncfusion.Pdf.Base, Version=26.2462.8.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
<HintPath>..\packages\Syncfusion.Pdf.WinForms.26.2.8\lib\net462\Syncfusion.Pdf.Base.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.Presentation.Base, Version=26.2462.8.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
<HintPath>..\packages\Syncfusion.Presentation.WinForms.26.2.8\lib\net462\Syncfusion.Presentation.Base.dll</HintPath>
</Reference>
<Reference Include="Syncfusion.XlsIO.Base, Version=26.2462.8.0, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
<HintPath>..\packages\Syncfusion.XlsIO.WinForms.26.2.8\lib\net462\Syncfusion.XlsIO.Base.dll</HintPath>
</Reference>
@ -107,6 +110,7 @@
<Compile Include="clsDocGet.cs" />
<Compile Include="Klassen\DocGenerator_from_EDOKA.cs" />
<Compile Include="Klassen\SyncFPDF.cs" />
<Compile Include="Klassen\SyncFPowerPoint.cs" />
<Compile Include="Klassen\SyndFExcel.cs" />
<Compile Include="Klassen\SynFWord.cs" />
<Compile Include="Print.cs" />

@ -21,9 +21,19 @@ namespace DOCGEN.Generator
public string DokumentID;
public string tempdir;
private static readonly NLog.Logger Logger = NLog.LogManager.GetCurrentClassLogger();
public void Lic()
{
// 25. string lickey = "Ngo9BigBOggjHTQxAR8/V1NCaF5cXmZCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXdecXRdQ2heUU13XUI="
//string lickey = "Ngo9BigBOggjHTQxAR8/V1NCaF5cXmZCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXZeeXRQR2NZUEZ2WkE=";
string lickey = "Ngo9BigBOggjHTQxAR8/V1NCaF1cXGJCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXZeeXRQR2ZfVEV2VkA=";
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(lickey);
}
public DocGenerator_from_EDOKA(string connectionstring)
{
this.connectionstring = connectionstring;
Lic();
}
public DocGenerator_from_EDOKA(string connectionstring, string tempdir)

@ -36,7 +36,7 @@ namespace DOCGEN.Klassen
{
public class SynFWord
{
public bool create_nativ_word(string property, string value, string base64, string originalfile, string destfile)
public bool create_nativ(string property, string value, string base64, string originalfile, string destfile)
{
FileStream ms = new FileStream(originalfile, FileMode.Open, FileAccess.Read);
WordDocument document = new WordDocument();

@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Syncfusion.Presentation;
using Syncfusion.XlsIO;
namespace DOCGEN.Klassen
{
public class SyncFPowerPoint
{
public bool create_nativ(string property, string value, string base64, string originalfile, string destfile)
{
FileStream ms = new FileStream(originalfile, FileMode.Open, FileAccess.Read);
//FileStream os = new FileStream(destfile, FileMode.Create);
IPresentation pptxDoc = Presentation.Open(originalfile);
try
{
pptxDoc.CustomDocumentProperties.Add(property);
pptxDoc.CustomDocumentProperties[property].Value = value;
}
catch
{
pptxDoc.CustomDocumentProperties.Add(property);
pptxDoc.CustomDocumentProperties[property].Value = value;
}
ms.Close();
ms.Dispose();
pptxDoc.Save(destfile);
//os.Close();
//os.Dispose();
return true;
}
}
}

@ -10,7 +10,7 @@ namespace DOCGEN.Klassen
{
public class SynFExcel
{
public bool create_nativ_excel(string property, string value, string base64, string originalfile, string destfile)
public bool create_nativ(string property, string value, string base64, string originalfile, string destfile)
{
FileStream ms = new FileStream(originalfile, FileMode.Open, FileAccess.Read);
FileStream os = new FileStream(destfile, FileMode.Create);

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

@ -28,7 +28,10 @@ namespace DOCGEN
public void Lic()
{
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("Ngo9BigBOggjHTQxAR8/V1NCaF5cXmZCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXdecXRdQ2heUU13XUI=");
// 25. string lickey = "Ngo9BigBOggjHTQxAR8/V1NCaF5cXmZCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXdecXRdQ2heUU13XUI="
//string lickey = "Ngo9BigBOggjHTQxAR8/V1NCaF5cXmZCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXZeeXRQR2NZUEZ2WkE=";
string lickey = "Ngo9BigBOggjHTQxAR8/V1NCaF1cXGJCf1FpRmJGdld5fUVHYVZUTXxaS00DNHVRdkdnWXZeeXRQR2ZfVEV2VkA=";
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(lickey);
}
public DocGen() {
Lic();

@ -124,3 +124,5 @@ E:\Software-Projekte\OnDoc\OnDoc\DOCGEN\obj\Debug\DocGen.csproj.CoreCompileInput
E:\Software-Projekte\OnDoc\OnDoc\DOCGEN\obj\Debug\DocGen.csproj.Up2Date
E:\Software-Projekte\OnDoc\OnDoc\DOCGEN\obj\Debug\DOCGEN.dll
E:\Software-Projekte\OnDoc\OnDoc\DOCGEN\obj\Debug\DOCGEN.pdb
E:\Software-Projekte\OnDoc\OnDoc\DOCGEN\bin\Debug\Syncfusion.Presentation.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\DOCGEN\bin\Debug\Syncfusion.Presentation.Base.xml

Binary file not shown.

Binary file not shown.

@ -1 +1 @@
7447241cc4f5511ef38446c21b07f17ca15eb77d7ad1a4267ce082b6e4234f47
d14f2e223b0685966816e5b2aa5af46e3fc937f316941578832a83d0425adf5f

@ -19,6 +19,7 @@
<package id="Syncfusion.Pdf.Imaging.NET" version="26.2.8" targetFramework="net481" />
<package id="Syncfusion.Pdf.NET" version="26.2.8" targetFramework="net481" />
<package id="Syncfusion.Pdf.WinForms" version="26.2.8" targetFramework="net481" />
<package id="Syncfusion.Presentation.WinForms" version="26.2.8" targetFramework="net481" />
<package id="Syncfusion.SkiaSharpHelper.NET" version="25.2.6" targetFramework="net481" />
<package id="Syncfusion.XlsIO.WinForms" version="26.2.8" targetFramework="net481" />
<package id="System.Buffers" version="4.5.1" targetFramework="net481" />

Binary file not shown.

Binary file not shown.

@ -228,6 +228,31 @@ namespace Database
return 0;
}
}
public int Get_Teamnr(string mitarbeiternr)
{
try
{
if (mitarbeiternr == "")
{
return 0;
}
Get_Tabledata("Select team from profil where standard=1 and aktiv=1 and mitarbeiternr=" + mitarbeiternr + "", false, true);
if (dsdaten.Tables[0].Rows.Count < 1)
{
return 0;
}
else
{
return Convert.ToInt32(dsdaten.Tables[0].Rows[0]["team"].ToString());
}
}
catch
{
return 0;
}
}
public DataTable Get_Vorlage_By_DokumentID(string dokumentid)
{
@ -684,7 +709,7 @@ namespace Database
}
public bool Save_To_DB(string sDokumentID, string sDokumentName)
public bool Save_To_DB(string sDokumentID, string sDokumentName, string base64document = "")
{
try
{
@ -694,12 +719,22 @@ namespace Database
SqlDataAdapter DA = new SqlDataAdapter("select * from doks where dokumentid='" + DokumentID + "'", Connection);
SqlCommandBuilder cb = new SqlCommandBuilder(DA);
DataSet ds = new DataSet();
FileStream fs = new FileStream(Dokumentname, FileMode.Open, FileAccess.Read);
byte[] mydata = new byte[fs.Length];
try
byte [] mydata = null;
if (base64document == "")
{
FileStream fs = new FileStream(Dokumentname, FileMode.Open, FileAccess.Read);
mydata = new byte[fs.Length];
fs.Read(mydata, 0, Convert.ToInt32(fs.Length));
fs.Close();
fs = null;
}
else
{
mydata = System.Convert.FromBase64String(base64document);
}
try
{
Connection.ConnectionString = connectionstring;
Connection.Open();
DA.Fill(ds, "docs");
@ -725,7 +760,7 @@ namespace Database
}
finally
{
fs = null;
//fs = null;
cb = null;
ds = null;
DA = null;

Binary file not shown.

Binary file not shown.

@ -0,0 +1,7 @@
This software is covered by the Software License Agreement (the “Agreement”)(https://www.syncfusion.com/nuget/license?utm_source=nuget&amp;utm_medium=listing). Any use in any form, regardless of where it was obtained is governed by the Agreement. The Agreement is a legal agreement between you (“You”, “Your”, or “Customer”) and Syncfusion, Inc., a Delaware corporation with its principal place of business located at 2501 Aerial Center Parkway, Suite 200, Morrisville, NC 27560 (“Syncfusion”). By accessing, downloading, viewing, possessing, or otherwise using any part of Syncfusions Essential Studio product, you are agreeing to be bound by the terms and conditions and agree to register with Syncfusion. If you do not agree to be bound by the terms and conditions of the Agreement, you cannot access, register, use, or view any part of Syncfusions Essential Studio product or lines of code.
This license is for Essential Studio Enterprise Edition.
TO READ THE COMPLETE LICENSE AGREEMENT: https://www.syncfusion.com/nuget/license?utm_source=nuget&amp;utm_medium=listing,
IF AFTER READING THIS AGREEMENT YOU HAVE ANY QUESTIONS ABOUT THIS AGREEMENT, PLEASE CONTACT SYNCFUSION PRIOR TO USING THE SOFTWARE PRODUCT VIA EMAIL AT LEGALQUESTIONS@SYNCFUSION.COM

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -0,0 +1,7 @@
This software is covered by the Software License Agreement (the “Agreement”)(https://www.syncfusion.com/nuget/license?utm_source=nuget&amp;utm_medium=listing). Any use in any form, regardless of where it was obtained is governed by the Agreement. The Agreement is a legal agreement between you (“You”, “Your”, or “Customer”) and Syncfusion, Inc., a Delaware corporation with its principal place of business located at 2501 Aerial Center Parkway, Suite 200, Morrisville, NC 27560 (“Syncfusion”). By accessing, downloading, viewing, possessing, or otherwise using any part of Syncfusions Essential Studio product, you are agreeing to be bound by the terms and conditions and agree to register with Syncfusion. If you do not agree to be bound by the terms and conditions of the Agreement, you cannot access, register, use, or view any part of Syncfusions Essential Studio product or lines of code.
This license is for Essential Studio Enterprise Edition.
TO READ THE COMPLETE LICENSE AGREEMENT: https://www.syncfusion.com/nuget/license?utm_source=nuget&amp;utm_medium=listing,
IF AFTER READING THIS AGREEMENT YOU HAVE ANY QUESTIONS ABOUT THIS AGREEMENT, PLEASE CONTACT SYNCFUSION PRIOR TO USING THE SOFTWARE PRODUCT VIA EMAIL AT LEGALQUESTIONS@SYNCFUSION.COM

@ -0,0 +1,2 @@
Syncfusion licensing is a .NET library for validating the registered Syncfusion license in an application at runtime.
The Syncfusion license must be registered in an application when using the Syncfusion evaluation build or NuGet package assemblies.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

@ -0,0 +1,7 @@
This software is covered by the Software License Agreement (the “Agreement”)(https://www.syncfusion.com/nuget/license?utm_source=nuget&amp;utm_medium=listing). Any use in any form, regardless of where it was obtained is governed by the Agreement. The Agreement is a legal agreement between you (“You”, “Your”, or “Customer”) and Syncfusion, Inc., a Delaware corporation with its principal place of business located at 2501 Aerial Center Parkway, Suite 200, Morrisville, NC 27560 (“Syncfusion”). By accessing, downloading, viewing, possessing, or otherwise using any part of Syncfusions Essential Studio product, you are agreeing to be bound by the terms and conditions and agree to register with Syncfusion. If you do not agree to be bound by the terms and conditions of the Agreement, you cannot access, register, use, or view any part of Syncfusions Essential Studio product or lines of code.
This license is for Essential Studio Enterprise Edition.
TO READ THE COMPLETE LICENSE AGREEMENT: https://www.syncfusion.com/nuget/license?utm_source=nuget&amp;utm_medium=listing,
IF AFTER READING THIS AGREEMENT YOU HAVE ANY QUESTIONS ABOUT THIS AGREEMENT, PLEASE CONTACT SYNCFUSION PRIOR TO USING THE SOFTWARE PRODUCT VIA EMAIL AT LEGALQUESTIONS@SYNCFUSION.COM

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save