Update 20260514

This commit is contained in:
Stefan Hutter
2026-05-14 10:49:27 +02:00
parent d3d7b06872
commit 83a0703324
247 changed files with 900388 additions and 222 deletions
+66
View File
@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{27AF48F5-BC6D-4DD6-B853-2ED1B1D481AA}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>APICLI</RootNamespace>
<AssemblyName>APICLI</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<StartArguments>
</StartArguments>
</PropertyGroup>
</Project>
+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="APICLI.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
<userSettings>
<APICLI.Properties.Settings>
<setting name="resturi" serializeAs="String">
<value>https://localhost:2034/API/</value>
</setting>
<setting name="token" serializeAs="String">
<value>pZkuG6l6ORCEckqQimPK58PO1A9EnkMtL5oCgRX9WiWnD4xeH7ikGzhWnTBy/vk8J4Iiz8gCSx9uFHA4+DvITG0roO97sk82d/0BCjVlwLWINpXlJfGYEF3X96AdoCQvb3ruwv/tVqEHsSU5aNfyxBAe+EhLTHQ8t7ysgJZWh98=</value>
</setting>
</APICLI.Properties.Settings>
</userSettings>
</configuration>
+59
View File
@@ -0,0 +1,59 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace APICLI
{
internal class Program
{
static void Main(string[] args)
{
try
{
using (var client = new HttpClient())
{
// 🔐 Bearer Token
string json = System.IO.File.ReadAllText(args[1].ToString());
string ApiUrl = Properties.Settings.Default.resturi + args[0].ToString();
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue("Bearer", Properties.Settings.Default.token);
var content = new StringContent(
json,
Encoding.UTF8,
"application/json");
var response = client.PostAsync(ApiUrl, content).Result;
var responseText = response.Content.ReadAsStringAsync().Result;
if (!response.IsSuccessStatusCode)
{
// optional: Logging
Console.WriteLine($"Error: {response.StatusCode} - {responseText}");
}
var jsonResult = JObject.Parse(responseText);
Console.WriteLine(responseText);
}
}
catch (Exception ex)
{
// Logging
Console.WriteLine(ex.Message);
}
}
}
}
+33
View File
@@ -0,0 +1,33 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("APICLI")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("HP Inc.")]
[assembly: AssemblyProduct("APICLI")]
[assembly: AssemblyCopyright("Copyright © HP Inc. 2026")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
[assembly: ComVisible(false)]
// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
[assembly: Guid("27af48f5-bc6d-4dd6-b853-2ed1b1d481aa")]
// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
//
// Hauptversion
// Nebenversion
// Buildnummer
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
+52
View File
@@ -0,0 +1,52 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
namespace APICLI.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.14.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("https://localhost:2034/API/")]
public string resturi {
get {
return ((string)(this["resturi"]));
}
set {
this["resturi"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("pZkuG6l6ORCEckqQimPK58PO1A9EnkMtL5oCgRX9WiWnD4xeH7ikGzhWnTBy/vk8J4Iiz8gCSx9uFHA4+" +
"DvITG0roO97sk82d/0BCjVlwLWINpXlJfGYEF3X96AdoCQvb3ruwv/tVqEHsSU5aNfyxBAe+EhLTHQ8t" +
"7ysgJZWh98=")]
public string token {
get {
return ((string)(this["token"]));
}
set {
this["token"] = value;
}
}
}
}
+12
View File
@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="APICLI.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="resturi" Type="System.String" Scope="User">
<Value Profile="(Default)">https://localhost:2034/API/</Value>
</Setting>
<Setting Name="token" Type="System.String" Scope="User">
<Value Profile="(Default)">pZkuG6l6ORCEckqQimPK58PO1A9EnkMtL5oCgRX9WiWnD4xeH7ikGzhWnTBy/vk8J4Iiz8gCSx9uFHA4+DvITG0roO97sk82d/0BCjVlwLWINpXlJfGYEF3X96AdoCQvb3ruwv/tVqEHsSU5aNfyxBAe+EhLTHQ8t7ysgJZWh98=</Value>
</Setting>
</Settings>
</SettingsFile>
Binary file not shown.
+21
View File
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="APICLI.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
<userSettings>
<APICLI.Properties.Settings>
<setting name="resturi" serializeAs="String">
<value>https://localhost:2034/API/</value>
</setting>
<setting name="token" serializeAs="String">
<value>pZkuG6l6ORCEckqQimPK58PO1A9EnkMtL5oCgRX9WiWnD4xeH7ikGzhWnTBy/vk8J4Iiz8gCSx9uFHA4+DvITG0roO97sk82d/0BCjVlwLWINpXlJfGYEF3X96AdoCQvb3ruwv/tVqEHsSU5aNfyxBAe+EhLTHQ8t7ysgJZWh98=</value>
</setting>
</APICLI.Properties.Settings>
</userSettings>
</configuration>
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff
+947
View File
@@ -0,0 +1,947 @@
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
pause
+947
View File
@@ -0,0 +1,947 @@
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
apicli DokumentGenerator E:\Software-Projekte\OnDoc\APIJson\Batch_Produktwechsel.json
pause
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
@@ -0,0 +1 @@
3150e81f54f21d848d072ab4da4abc72c53863e69ed6cc80352d31dd24fa1420
@@ -0,0 +1,10 @@
E:\Software-Projekte\OnDoc\OnDoc\APICLI\obj\Debug\APICLI.csproj.AssemblyReference.cache
E:\Software-Projekte\OnDoc\OnDoc\APICLI\obj\Debug\APICLI.csproj.CoreCompileInputs.cache
E:\Software-Projekte\OnDoc\OnDoc\APICLI\bin\Debug\APICLI.exe.config
E:\Software-Projekte\OnDoc\OnDoc\APICLI\bin\Debug\APICLI.exe
E:\Software-Projekte\OnDoc\OnDoc\APICLI\bin\Debug\APICLI.pdb
E:\Software-Projekte\OnDoc\OnDoc\APICLI\bin\Debug\Newtonsoft.Json.dll
E:\Software-Projekte\OnDoc\OnDoc\APICLI\bin\Debug\Newtonsoft.Json.xml
E:\Software-Projekte\OnDoc\OnDoc\APICLI\obj\Debug\APICLI.csproj.Up2Date
E:\Software-Projekte\OnDoc\OnDoc\APICLI\obj\Debug\APICLI.exe
E:\Software-Projekte\OnDoc\OnDoc\APICLI\obj\Debug\APICLI.pdb
Binary file not shown.
Binary file not shown.
+4
View File
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="13.0.4" targetFramework="net48" />
</packages>
+17 -17
View File
@@ -29,10 +29,10 @@
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
Syncfusion.Windows.Forms.Edit.Implementation.Config.Config config2 = new Syncfusion.Windows.Forms.Edit.Implementation.Config.Config();
Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings messageBoxSettings2 = new Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings();
Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings pdfViewerPrinterSettings2 = new Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings();
Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings textSearchSettings2 = new Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings();
Syncfusion.Windows.Forms.Edit.Implementation.Config.Config config1 = new Syncfusion.Windows.Forms.Edit.Implementation.Config.Config();
Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings messageBoxSettings1 = new Syncfusion.Windows.Forms.PdfViewer.MessageBoxSettings();
Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings pdfViewerPrinterSettings1 = new Syncfusion.Windows.PdfViewer.PdfViewerPrinterSettings();
Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings textSearchSettings1 = new Syncfusion.Windows.Forms.PdfViewer.TextSearchSettings();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.txtKey = new System.Windows.Forms.ToolStripTextBox();
@@ -216,7 +216,7 @@
this.editControl1.AllowZoom = false;
this.editControl1.ChangedLinesMarkingLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(238)))), ((int)(((byte)(98)))));
this.editControl1.CodeSnipptSize = new System.Drawing.Size(100, 100);
this.editControl1.Configurator = config2;
this.editControl1.Configurator = config1;
this.editControl1.ContextChoiceBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.editControl1.ContextChoiceBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(233)))), ((int)(((byte)(166)))), ((int)(((byte)(50)))));
this.editControl1.ContextChoiceForeColor = System.Drawing.SystemColors.InfoText;
@@ -260,17 +260,17 @@
this.pdfViewerControl1.IsTextSearchEnabled = true;
this.pdfViewerControl1.IsTextSelectionEnabled = true;
this.pdfViewerControl1.Location = new System.Drawing.Point(0, 0);
messageBoxSettings2.EnableNotification = true;
this.pdfViewerControl1.MessageBoxSettings = messageBoxSettings2;
messageBoxSettings1.EnableNotification = true;
this.pdfViewerControl1.MessageBoxSettings = messageBoxSettings1;
this.pdfViewerControl1.MinimumZoomPercentage = 50;
this.pdfViewerControl1.Name = "pdfViewerControl1";
this.pdfViewerControl1.PageBorderThickness = 1;
pdfViewerPrinterSettings2.Copies = 1;
pdfViewerPrinterSettings2.PageOrientation = Syncfusion.Windows.PdfViewer.PdfViewerPrintOrientation.Auto;
pdfViewerPrinterSettings2.PageSize = Syncfusion.Windows.PdfViewer.PdfViewerPrintSize.ActualSize;
pdfViewerPrinterSettings2.PrintLocation = ((System.Drawing.PointF)(resources.GetObject("pdfViewerPrinterSettings2.PrintLocation")));
pdfViewerPrinterSettings2.ShowPrintStatusDialog = true;
this.pdfViewerControl1.PrinterSettings = pdfViewerPrinterSettings2;
pdfViewerPrinterSettings1.Copies = 1;
pdfViewerPrinterSettings1.PageOrientation = Syncfusion.Windows.PdfViewer.PdfViewerPrintOrientation.Auto;
pdfViewerPrinterSettings1.PageSize = Syncfusion.Windows.PdfViewer.PdfViewerPrintSize.ActualSize;
pdfViewerPrinterSettings1.PrintLocation = ((System.Drawing.PointF)(resources.GetObject("pdfViewerPrinterSettings1.PrintLocation")));
pdfViewerPrinterSettings1.ShowPrintStatusDialog = true;
this.pdfViewerControl1.PrinterSettings = pdfViewerPrinterSettings1;
this.pdfViewerControl1.ReferencePath = null;
this.pdfViewerControl1.ScrollDisplacementValue = 0;
this.pdfViewerControl1.ShowHorizontalScrollBar = true;
@@ -280,10 +280,10 @@
this.pdfViewerControl1.SpaceBetweenPages = 8;
this.pdfViewerControl1.TabIndex = 0;
this.pdfViewerControl1.Text = "pdfViewerControl1";
textSearchSettings2.CurrentInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(171)))), ((int)(((byte)(64)))));
textSearchSettings2.HighlightAllInstance = true;
textSearchSettings2.OtherInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
this.pdfViewerControl1.TextSearchSettings = textSearchSettings2;
textSearchSettings1.CurrentInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(255)))), ((int)(((byte)(171)))), ((int)(((byte)(64)))));
textSearchSettings1.HighlightAllInstance = true;
textSearchSettings1.OtherInstanceColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(254)))), ((int)(((byte)(255)))), ((int)(((byte)(0)))));
this.pdfViewerControl1.TextSearchSettings = textSearchSettings1;
this.pdfViewerControl1.ThemeName = "Default";
this.pdfViewerControl1.VerticalScrollOffset = 0;
this.pdfViewerControl1.VisualStyle = Syncfusion.Windows.Forms.PdfViewer.VisualStyle.Default;
+1 -1
View File
@@ -181,7 +181,7 @@
nOccAdABIDXXE1nzAAAAAElFTkSuQmCC
</value>
</data>
<data name="pdfViewerPrinterSettings2.PrintLocation" mimetype="application/x-microsoft.net.object.binary.base64">
<data name="pdfViewerPrinterSettings1.PrintLocation" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0
dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAABVTeXN0ZW0uRHJh
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -347,7 +347,7 @@ namespace API_NetFramework.Controllers
try
{
// guid = Guid.NewGuid().ToString();
guid = Guid.NewGuid().ToString();
Logging.APIDocLog.Info("CreateDoks Start", "CreateDoks", guid, "");
bool hasattachment = false;
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
@@ -757,7 +757,7 @@ namespace API_NetFramework.Controllers
string mailbody = "";
try
{
//guid = Guid.NewGuid().ToString();
guid = Guid.NewGuid().ToString();
Logging.APIDocLog.Info("Start CreateDoc", "CreateDoc", guid, "");
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
{
@@ -1016,7 +1016,8 @@ namespace API_NetFramework.Controllers
if (string.IsNullOrEmpty(vp.GASAdresse)) { vp.GASAdresse = ""; }
if (vp.GASAdresse.ToString().Trim() == "") { vp.GAS = ""; } else { vp.GAS = "1"; }
vp.GASSize = doccreate.GASCouvert;
vp.Versandoption = doccreate.VersandOption; ;
vp.Versandoption = doccreate.VersandOption;
vp.ReferenceID= doccreate.Reference;
List<Versanddokument> vdoc = new List<Versanddokument>();
Versanddokument vd = new Versanddokument(dokumentid, doccreate.PartnerNr + " - " + dokdata.Bezeichnung, doccreate.PartnerNr);
vd.dokument = vsdoc;
@@ -1275,7 +1276,7 @@ namespace API_NetFramework.Controllers
dynamic dataj = null;
try
{
//guid = Guid.NewGuid().ToString();
guid = Guid.NewGuid().ToString();
Logging.APIDocLog.Info("Start CreateCLM", "CreateESS", guid, "");
if (SecuringWebApiUsingApiKey.Middleware.ApiKeyMiddleware.Authorized((HttpRequestMessage)Request, tokenfunction) == false)
{
@@ -1400,6 +1401,9 @@ namespace API_NetFramework.Controllers
case "11": //Logo
d.itemvalue = GetImageAsBase64(4, -1, 0);
break;
case "20":
d.itemvalue = get_item_table(dr["ess_feldname"].ToString(), ref clmdocitemlist);
break;
case "13": //Vorname
d.itemvalue = Get_OnDoc_Value("13", get_item_value(dr["ess_feldname"].ToString(), ref clmdocitemlist), "");
break;
@@ -1435,12 +1439,16 @@ namespace API_NetFramework.Controllers
case "18": //Pruefziffer
d.itemvalue = pruefziffer(get_item_value(dr["ess_feldname"].ToString(), ref clmdocitemlist));
break;
case "19":
d.itemvalue=get_item_value(dr["ess_feldname"].ToString(), ref clmdocitemlist);
d.field = dr["ess_feldname2"].ToString();
break;
default:
break;
}
if (dr["ess_feldname2"].ToString() != "")
{
if (d.type.ToString() != "17")
if (d.type.ToString() != "17" && d.type!="19")
{
string returnvalue = "";
if (CheckUseField(dr["ess_feldname2"].ToString(), ref clmdocitemlist, ref returnvalue))
@@ -1863,12 +1871,41 @@ namespace API_NetFramework.Controllers
private string gendoc(ref DocCreate doccreate, ref clsDocData dokdata, ref Model.clsdocgendata docgendata, string key)
{
string OwnHost = System.Configuration.ConfigurationManager.AppSettings["OwnHost"].ToString();
string imagepath = System.Configuration.ConfigurationManager.AppSettings["VSImagePath"].ToString();
string dokumentid = "";
;
Database.DB db = new DB(connectionstring);
try
{
db.Get_Tabledata("Select * from ondoc_api_tagformat where dokumenttypnr=" + doccreate.VorlagenTypID.ToString() + "and aktiv=1", false, true);
if (db.dsdaten.Tables[0].Rows.Count > 0)
{
foreach (attribute apivalue in doccreate.APIValues)
{
foreach (DataRow dr1 in db.dsdaten.Tables[0].Rows)
{
if (dr1["APITag"].ToString() == apivalue.Tag)
{
apivalue.Value = dr1["Format"].ToString().Replace("&value&", apivalue.Value);
if (dr1["Format"].ToString().Contains(@"\n"))
{
apivalue.Value = apivalue.Value.Replace(@"\r\n", Environment.NewLine);
apivalue.Value = apivalue.Value.Replace(@"\n", ((char)13).ToString());
}
}
}
}
}
}
catch { }
db.Get_Tabledata("Select * from dokumenttyp where dokumenttypnr=" + doccreate.VorlagenTypID, false, true);
try
{
@@ -2323,6 +2360,18 @@ namespace API_NetFramework.Controllers
db.add_parameter("@dokumentid", dokumentid);
db.Get_Tabledata("ondoc_delete_apidoc", true, false);
}
//Funktionen für DB-Updates bei CLM
foreach(CLMDocItem di in clmdocitemlist)
{
if (di.type == "19")
{
db.clear_parameter();
db.add_parameter("@dokumentid", dokumentid);
db.add_parameter("@funktion",di.field);
db.add_parameter("@value", di.itemvalue);
db.Get_Tabledata("OnDoc_Update_CLM_Werte",true,false);
}
}
deflist.Clear();
dget = null;
Generator = null;
@@ -2566,6 +2615,28 @@ namespace API_NetFramework.Controllers
}
private string get_item_table(string inhalt,ref List<CLMDocItem> clmdocitemlist)
{
string result = "";
try
{
for (int i = 0; i < 20; i++)
{
string s = get_item_value(inhalt.Replace("[]", "") + "[" + i.ToString() + "]", ref clmdocitemlist);
if (s != "")
{
result = result + s + Environment.NewLine;
}
}
}
catch
{
return result;
}
return result;
}
private string get_item_value(string inhalt, ref List<CLMDocItem> clmdocitemlist)
{
@@ -192,8 +192,12 @@ namespace OnDocAPI_NetFramework.Controllers
{
MailMessage mail = new MailMessage();
SmtpClient SmtpServer = new SmtpClient();
string mailempfaenger = System.Configuration.ConfigurationManager.AppSettings["Mailempfaenger"].ToString();
if (mailempfaenger!="") { email.empfaenger=mailempfaenger; }
string mailempfaengerdefault = System.Configuration.ConfigurationManager.AppSettings["Mailempfaenger"].ToString();
if (email.empfaenger.ToString()=="")
{
email.empfaenger=mailempfaengerdefault;
}
//if (mailempfaenger!="") { email.empfaenger=mailempfaenger; }
mail.To.Add(email.empfaenger);
mail.From = new MailAddress("OnDoc@tkb.ch");
mail.Subject = email.betreff;
@@ -5,7 +5,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<Project>
<PropertyGroup>
<_PublishTargetUrl>E:\Software-Projekte\OnDoc\PubServices\OnDoc</_PublishTargetUrl>
<History>True|2026-04-26T05:46:17.4664888Z||;True|2026-04-24T06:24:40.7783022+02:00||;True|2026-04-23T11:21:20.3704464+02:00||;True|2026-04-23T10:31:57.1547227+02:00||;True|2026-04-23T09:53:44.7739372+02:00||;True|2026-04-23T09:53:32.6495578+02:00||;True|2026-04-23T09:47:39.5698157+02:00||;True|2026-04-21T18:33:32.1288240+02:00||;True|2026-04-21T12:42:16.0067525+02:00||;True|2026-04-20T09:19:29.7327180+02:00||;True|2026-04-17T12:53:09.6866425+02:00||;True|2026-04-17T12:36:00.7292052+02:00||;True|2026-04-17T10:14:43.2460807+02:00||;True|2026-04-16T09:52:35.3555487+02:00||;True|2026-04-16T09:48:12.9673890+02:00||;True|2026-04-16T09:36:25.4647803+02:00||;True|2026-04-16T09:18:23.6715906+02:00||;True|2026-04-15T12:41:42.7039426+02:00||;True|2026-04-15T09:35:17.1390603+02:00||;True|2026-04-13T12:15:21.5302680+02:00||;True|2026-04-12T08:08:44.1463714+02:00||;True|2026-04-07T10:22:57.7224308+02:00||;True|2026-04-07T09:20:01.6630821+02:00||;True|2026-04-06T08:17:37.5337584+02:00||;True|2026-04-05T08:53:42.1753435+02:00||;True|2026-04-02T17:43:40.0268875+02:00||;True|2026-03-31T12:35:33.9827919+02:00||;True|2026-03-31T12:29:13.8708772+02:00||;True|2026-03-31T12:18:19.9872382+02:00||;True|2026-03-31T10:39:08.0352645+02:00||;True|2026-03-31T10:37:10.5663757+02:00||;True|2026-03-31T10:24:06.1437798+02:00||;True|2026-03-29T18:46:00.5859706+02:00||;True|2026-03-29T17:43:36.5421725+02:00||;True|2026-03-28T11:22:17.8973116+01:00||;True|2026-03-27T16:18:48.9978212+01:00||;True|2026-03-27T07:14:41.6874122+01:00||;True|2026-03-26T15:26:02.2751561+01:00||;True|2026-03-25T21:25:11.0646560+01:00||;True|2026-03-25T17:13:28.1157629+01:00||;True|2026-03-25T17:05:35.8912458+01:00||;True|2026-03-25T17:00:55.0064754+01:00||;True|2026-03-24T14:39:42.8828134+01:00||;True|2026-03-23T15:07:18.4892650+01:00||;True|2026-03-23T10:20:19.1623589+01:00||;True|2026-03-22T13:25:52.6279375+01:00||;True|2026-03-20T07:24:37.8861696+01:00||;True|2026-03-19T21:38:10.9526034+01:00||;True|2026-03-18T17:41:36.3493613+01:00||;True|2026-03-18T14:58:36.6641588+01:00||;True|2026-03-18T13:36:39.6754082+01:00||;True|2026-03-18T13:28:13.3767791+01:00||;True|2026-03-18T12:39:58.8696214+01:00||;True|2026-03-18T10:12:19.4421254+01:00||;True|2026-03-18T09:23:32.7324650+01:00||;True|2026-03-18T08:30:31.0127326+01:00||;True|2026-03-17T16:29:03.7106180+01:00||;True|2026-03-17T16:11:10.6005495+01:00||;True|2026-03-17T15:59:13.2348406+01:00||;True|2026-03-17T15:31:12.0317447+01:00||;True|2026-03-17T14:48:40.3877203+01:00||;True|2026-03-17T14:11:25.3562261+01:00||;True|2026-03-17T13:47:11.1326741+01:00||;True|2026-03-16T15:31:10.2555705+01:00||;True|2026-03-16T14:12:19.6773991+01:00||;True|2026-03-16T13:55:53.2937690+01:00||;True|2026-03-16T13:49:40.9223505+01:00||;True|2026-03-16T13:45:46.5476155+01:00||;True|2026-03-16T10:05:17.8849739+01:00||;True|2026-03-16T09:50:03.0002779+01:00||;True|2026-03-15T17:59:21.9961152+01:00||;True|2026-03-15T17:55:23.9254472+01:00||;False|2026-03-15T17:55:17.4934783+01:00||;True|2026-03-15T17:30:56.4581787+01:00||;True|2026-03-15T17:27:23.6999475+01:00||;True|2026-03-15T17:06:43.4082140+01:00||;True|2026-03-15T16:47:00.3514115+01:00||;True|2026-03-15T15:08:09.6821523+01:00||;True|2026-03-12T16:06:53.7395894+01:00||;True|2026-03-11T18:52:45.1428118+01:00||;True|2026-03-11T18:28:35.8258686+01:00||;True|2026-03-11T18:28:14.0116992+01:00||;True|2026-03-11T18:19:41.2917598+01:00||;True|2026-03-11T18:16:14.3982080+01:00||;True|2026-03-11T17:58:30.8611742+01:00||;True|2026-03-09T15:02:39.2942135+01:00||;True|2026-03-09T13:40:46.3543575+01:00||;True|2026-03-09T10:31:33.7382200+01:00||;True|2026-03-08T08:13:35.2118387+01:00||;True|2026-03-07T21:30:15.7021682+01:00||;True|2026-03-07T16:04:27.6676302+01:00||;True|2026-03-03T07:42:58.6695248+01:00||;True|2026-03-02T18:56:44.9083635+01:00||;True|2026-03-02T15:22:04.7632771+01:00||;True|2026-03-02T15:17:19.5888051+01:00||;True|2026-03-02T14:44:15.1850254+01:00||;False|2026-03-02T14:43:43.8750165+01:00||;True|2026-03-02T13:00:06.4813259+01:00||;True|2026-03-02T09:00:14.6639978+01:00||;True|2026-02-26T14:00:46.9137562+01:00||;</History>
<History>True|2026-05-14T08:34:04.0817762Z||;True|2026-05-14T09:27:10.3964277+02:00||;True|2026-05-11T13:25:56.8669971+02:00||;True|2026-05-11T12:55:37.1811149+02:00||;True|2026-05-11T12:14:23.3596137+02:00||;True|2026-05-11T11:48:44.0336829+02:00||;True|2026-05-07T13:23:58.5332941+02:00||;True|2026-05-07T10:58:34.9785881+02:00||;True|2026-05-05T18:59:52.5708006+02:00||;True|2026-05-01T09:52:11.2216548+02:00||;True|2026-04-27T07:59:24.4037454+02:00||;True|2026-04-26T07:46:17.4664888+02:00||;True|2026-04-24T06:24:40.7783022+02:00||;True|2026-04-23T11:21:20.3704464+02:00||;True|2026-04-23T10:31:57.1547227+02:00||;True|2026-04-23T09:53:44.7739372+02:00||;True|2026-04-23T09:53:32.6495578+02:00||;True|2026-04-23T09:47:39.5698157+02:00||;True|2026-04-21T18:33:32.1288240+02:00||;True|2026-04-21T12:42:16.0067525+02:00||;True|2026-04-20T09:19:29.7327180+02:00||;True|2026-04-17T12:53:09.6866425+02:00||;True|2026-04-17T12:36:00.7292052+02:00||;True|2026-04-17T10:14:43.2460807+02:00||;True|2026-04-16T09:52:35.3555487+02:00||;True|2026-04-16T09:48:12.9673890+02:00||;True|2026-04-16T09:36:25.4647803+02:00||;True|2026-04-16T09:18:23.6715906+02:00||;True|2026-04-15T12:41:42.7039426+02:00||;True|2026-04-15T09:35:17.1390603+02:00||;True|2026-04-13T12:15:21.5302680+02:00||;True|2026-04-12T08:08:44.1463714+02:00||;True|2026-04-07T10:22:57.7224308+02:00||;True|2026-04-07T09:20:01.6630821+02:00||;True|2026-04-06T08:17:37.5337584+02:00||;True|2026-04-05T08:53:42.1753435+02:00||;True|2026-04-02T17:43:40.0268875+02:00||;True|2026-03-31T12:35:33.9827919+02:00||;True|2026-03-31T12:29:13.8708772+02:00||;True|2026-03-31T12:18:19.9872382+02:00||;True|2026-03-31T10:39:08.0352645+02:00||;True|2026-03-31T10:37:10.5663757+02:00||;True|2026-03-31T10:24:06.1437798+02:00||;True|2026-03-29T18:46:00.5859706+02:00||;True|2026-03-29T17:43:36.5421725+02:00||;True|2026-03-28T11:22:17.8973116+01:00||;True|2026-03-27T16:18:48.9978212+01:00||;True|2026-03-27T07:14:41.6874122+01:00||;True|2026-03-26T15:26:02.2751561+01:00||;True|2026-03-25T21:25:11.0646560+01:00||;True|2026-03-25T17:13:28.1157629+01:00||;True|2026-03-25T17:05:35.8912458+01:00||;True|2026-03-25T17:00:55.0064754+01:00||;True|2026-03-24T14:39:42.8828134+01:00||;True|2026-03-23T15:07:18.4892650+01:00||;True|2026-03-23T10:20:19.1623589+01:00||;True|2026-03-22T13:25:52.6279375+01:00||;True|2026-03-20T07:24:37.8861696+01:00||;True|2026-03-19T21:38:10.9526034+01:00||;True|2026-03-18T17:41:36.3493613+01:00||;True|2026-03-18T14:58:36.6641588+01:00||;True|2026-03-18T13:36:39.6754082+01:00||;True|2026-03-18T13:28:13.3767791+01:00||;True|2026-03-18T12:39:58.8696214+01:00||;True|2026-03-18T10:12:19.4421254+01:00||;True|2026-03-18T09:23:32.7324650+01:00||;True|2026-03-18T08:30:31.0127326+01:00||;True|2026-03-17T16:29:03.7106180+01:00||;True|2026-03-17T16:11:10.6005495+01:00||;True|2026-03-17T15:59:13.2348406+01:00||;True|2026-03-17T15:31:12.0317447+01:00||;True|2026-03-17T14:48:40.3877203+01:00||;True|2026-03-17T14:11:25.3562261+01:00||;True|2026-03-17T13:47:11.1326741+01:00||;True|2026-03-16T15:31:10.2555705+01:00||;True|2026-03-16T14:12:19.6773991+01:00||;True|2026-03-16T13:55:53.2937690+01:00||;True|2026-03-16T13:49:40.9223505+01:00||;True|2026-03-16T13:45:46.5476155+01:00||;True|2026-03-16T10:05:17.8849739+01:00||;True|2026-03-16T09:50:03.0002779+01:00||;True|2026-03-15T17:59:21.9961152+01:00||;True|2026-03-15T17:55:23.9254472+01:00||;False|2026-03-15T17:55:17.4934783+01:00||;True|2026-03-15T17:30:56.4581787+01:00||;True|2026-03-15T17:27:23.6999475+01:00||;True|2026-03-15T17:06:43.4082140+01:00||;True|2026-03-15T16:47:00.3514115+01:00||;True|2026-03-15T15:08:09.6821523+01:00||;True|2026-03-12T16:06:53.7395894+01:00||;True|2026-03-11T18:52:45.1428118+01:00||;True|2026-03-11T18:28:35.8258686+01:00||;True|2026-03-11T18:28:14.0116992+01:00||;True|2026-03-11T18:19:41.2917598+01:00||;True|2026-03-11T18:16:14.3982080+01:00||;True|2026-03-11T17:58:30.8611742+01:00||;True|2026-03-09T15:02:39.2942135+01:00||;True|2026-03-09T13:40:46.3543575+01:00||;True|2026-03-09T10:31:33.7382200+01:00||;True|2026-03-08T08:13:35.2118387+01:00||;</History>
<LastFailureDetails />
</PropertyGroup>
<ItemGroup>
@@ -16,7 +16,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/31/2026 12:51:47</publishTime>
</File>
<File Include="Areas/HelpPage/HelpPage.css">
<publishTime>03/06/2024 09:20:46</publishTime>
<publishTime>06/03/2024 09:20:46</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/Api.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
@@ -55,7 +55,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml">
<publishTime>03/06/2024 09:20:41</publishTime>
<publishTime>06/03/2024 09:20:41</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml">
<publishTime>07/19/2024 12:24:15</publishTime>
@@ -70,49 +70,49 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>07/19/2024 12:24:15</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Shared/_Layout.cshtml">
<publishTime>03/06/2024 09:20:40</publishTime>
<publishTime>06/03/2024 09:20:40</publishTime>
</File>
<File Include="Areas/HelpPage/Views/Web.config">
<publishTime>03/06/2024 09:20:40</publishTime>
<publishTime>06/03/2024 09:20:40</publishTime>
</File>
<File Include="Areas/HelpPage/Views/_ViewStart.cshtml">
<publishTime>03/06/2024 09:20:40</publishTime>
<publishTime>06/03/2024 09:20:40</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.dll">
<publishTime>10/09/2013 17:29:20</publishTime>
<publishTime>09/10/2013 17:29:20</publishTime>
</File>
<File Include="bin/Antlr3.Runtime.pdb">
<publishTime>10/09/2013 17:29:20</publishTime>
<publishTime>09/10/2013 17:29:20</publishTime>
</File>
<File Include="bin/arm64/libSkiaSharp.dll">
<publishTime>06/02/2026 17:20:00</publishTime>
<publishTime>02/06/2026 17:20:00</publishTime>
</File>
<File Include="bin/BarcodeLib.dll">
<publishTime>04/23/2026 10:30:52</publishTime>
<publishTime>05/13/2026 18:11:51</publishTime>
</File>
<File Include="bin/BarcodeLib.pdb">
<publishTime>04/23/2026 10:30:52</publishTime>
<publishTime>05/13/2026 18:11:51</publishTime>
</File>
<File Include="bin/CSVNET.dll">
<publishTime>02/03/2026 12:58:54</publishTime>
<publishTime>03/02/2026 12:58:54</publishTime>
</File>
<File Include="bin/CSVNET.pdb">
<publishTime>02/03/2026 12:58:54</publishTime>
<publishTime>03/02/2026 12:58:54</publishTime>
</File>
<File Include="bin/Database.dll">
<publishTime>04/23/2026 09:53:22</publishTime>
<publishTime>05/13/2026 18:11:49</publishTime>
</File>
<File Include="bin/Database.dll.config">
<publishTime>09/18/2025 08:15:15</publishTime>
</File>
<File Include="bin/Database.pdb">
<publishTime>04/23/2026 09:53:22</publishTime>
<publishTime>05/13/2026 18:11:49</publishTime>
</File>
<File Include="bin/DataMatrix.net.dll">
<publishTime>02/03/2026 12:58:54</publishTime>
<publishTime>03/02/2026 12:58:54</publishTime>
</File>
<File Include="bin/DataMatrix.net.pdb">
<publishTime>02/03/2026 12:58:54</publishTime>
<publishTime>03/02/2026 12:58:54</publishTime>
</File>
<File Include="bin/de/System.Net.Http.Formatting.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
@@ -130,7 +130,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:35:02</publishTime>
</File>
<File Include="bin/de/System.Web.Optimization.resources.dll">
<publishTime>11/02/2014 16:28:40</publishTime>
<publishTime>02/11/2014 16:28:40</publishTime>
</File>
<File Include="bin/de/System.Web.Razor.resources.dll">
<publishTime>10/20/2023 22:35:02</publishTime>
@@ -145,22 +145,22 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/20/2023 22:35:04</publishTime>
</File>
<File Include="bin/DOCGEN.dll">
<publishTime>04/26/2026 07:46:15</publishTime>
<publishTime>05/14/2026 10:34:01</publishTime>
</File>
<File Include="bin/DOCGEN.dll.config">
<publishTime>03/11/2026 15:59:42</publishTime>
</File>
<File Include="bin/DOCGEN.pdb">
<publishTime>04/26/2026 07:46:15</publishTime>
<publishTime>05/14/2026 10:34:01</publishTime>
</File>
<File Include="bin/FastReport.Bars.dll">
<publishTime>11/27/2023 09:49:58</publishTime>
</File>
<File Include="bin/FastReport.Compat.dll">
<publishTime>07/09/2023 11:54:46</publishTime>
<publishTime>09/07/2023 11:54:46</publishTime>
</File>
<File Include="bin/FastReport.DataVisualization.dll">
<publishTime>07/09/2023 12:19:34</publishTime>
<publishTime>09/07/2023 12:19:34</publishTime>
</File>
<File Include="bin/FastReport.dll">
<publishTime>11/27/2023 09:50:34</publishTime>
@@ -169,40 +169,40 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/27/2023 09:50:04</publishTime>
</File>
<File Include="bin/Helper.dll">
<publishTime>04/16/2026 09:18:02</publishTime>
<publishTime>05/11/2026 13:25:53</publishTime>
</File>
<File Include="bin/Helper.pdb">
<publishTime>04/16/2026 09:18:02</publishTime>
<publishTime>05/11/2026 13:25:53</publishTime>
</File>
<File Include="bin/libSkiaSharp.dylib">
<publishTime>06/02/2026 09:22:08</publishTime>
<publishTime>02/06/2026 09:22:08</publishTime>
</File>
<File Include="bin/Logging.dll">
<publishTime>04/16/2026 09:18:01</publishTime>
<publishTime>05/11/2026 13:25:53</publishTime>
</File>
<File Include="bin/Logging.dll.config">
<publishTime>09/17/2025 15:09:13</publishTime>
</File>
<File Include="bin/Logging.pdb">
<publishTime>04/16/2026 09:18:01</publishTime>
<publishTime>05/11/2026 13:25:53</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.Abstractions.dll">
<publishTime>12/11/2018 18:29:00</publishTime>
<publishTime>11/12/2018 18:29:00</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.dll">
<publishTime>01/25/2019 00:18:54</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.Http.Features.dll">
<publishTime>12/11/2018 18:28:58</publishTime>
<publishTime>11/12/2018 18:28:58</publishTime>
</File>
<File Include="bin/Microsoft.AspNetCore.WebUtilities.dll">
<publishTime>12/11/2018 18:29:00</publishTime>
<publishTime>11/12/2018 18:29:00</publishTime>
</File>
<File Include="bin/Microsoft.Bcl.AsyncInterfaces.dll">
<publishTime>02/12/2025 00:12:14</publishTime>
<publishTime>12/02/2025 00:12:14</publishTime>
</File>
<File Include="bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll">
<publishTime>05/03/2023 23:41:40</publishTime>
<publishTime>03/05/2023 23:41:40</publishTime>
</File>
<File Include="bin/Microsoft.Extensions.Configuration.Abstractions.dll">
<publishTime>10/31/2023 16:04:06</publishTime>
@@ -226,16 +226,16 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/31/2023 16:00:32</publishTime>
</File>
<File Include="bin/Microsoft.Net.Http.Headers.dll">
<publishTime>12/11/2018 18:28:58</publishTime>
<publishTime>11/12/2018 18:28:58</publishTime>
</File>
<File Include="bin/Microsoft.Web.Infrastructure.dll">
<publishTime>11/04/2022 19:09:46</publishTime>
<publishTime>04/11/2022 19:09:46</publishTime>
</File>
<File Include="bin/Model.dll">
<publishTime>04/17/2026 10:09:56</publishTime>
<publishTime>05/13/2026 18:11:16</publishTime>
</File>
<File Include="bin/Model.pdb">
<publishTime>04/17/2026 10:09:56</publishTime>
<publishTime>05/13/2026 18:11:16</publishTime>
</File>
<File Include="bin/MW6.SDK.dll">
<publishTime>08/19/2014 21:33:57</publishTime>
@@ -247,37 +247,37 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>11/28/2018 00:07:54</publishTime>
</File>
<File Include="bin/Newtonsoft.Json.dll">
<publishTime>08/03/2023 06:09:56</publishTime>
<publishTime>03/08/2023 06:09:56</publishTime>
</File>
<File Include="bin/NLog.Database.dll">
<publishTime>10/08/2025 20:21:44</publishTime>
<publishTime>08/10/2025 20:21:44</publishTime>
</File>
<File Include="bin/NLog.dll">
<publishTime>02/28/2026 16:23:58</publishTime>
</File>
<File Include="bin/OfficePrinter.dll">
<publishTime>04/16/2026 10:09:30</publishTime>
<publishTime>05/07/2026 18:35:12</publishTime>
</File>
<File Include="bin/OfficePrinter.pdb">
<publishTime>04/16/2026 10:09:30</publishTime>
<publishTime>05/07/2026 18:35:12</publishTime>
</File>
<File Include="bin/OfficeToPDFConverter.dll">
<publishTime>02/03/2026 12:58:53</publishTime>
<publishTime>03/02/2026 12:58:53</publishTime>
</File>
<File Include="bin/OfficeToPDFConverter.pdb">
<publishTime>02/03/2026 12:58:53</publishTime>
<publishTime>03/02/2026 12:58:53</publishTime>
</File>
<File Include="bin/OnDocOffice.dll">
<publishTime>04/26/2026 07:46:15</publishTime>
<publishTime>05/14/2026 10:34:01</publishTime>
</File>
<File Include="bin/OnDocOffice.pdb">
<publishTime>04/26/2026 07:46:15</publishTime>
<publishTime>05/14/2026 10:34:01</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.dll">
<publishTime>04/26/2026 07:46:16</publishTime>
<publishTime>05/14/2026 10:34:03</publishTime>
</File>
<File Include="bin/OnDoc_NetFramework.pdb">
<publishTime>04/26/2026 07:46:16</publishTime>
<publishTime>05/14/2026 10:34:03</publishTime>
</File>
<File Include="bin/Owin.dll">
<publishTime>11/13/2012 13:19:34</publishTime>
@@ -325,10 +325,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>02/15/2022 06:21:10</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll">
<publishTime>05/10/2021 02:47:54</publishTime>
<publishTime>10/05/2021 02:47:54</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll">
<publishTime>05/10/2021 02:49:46</publishTime>
<publishTime>10/05/2021 02:49:46</publishTime>
</File>
<File Include="bin/roslyn/Microsoft.Managed.Core.CurrentVersions.targets">
<publishTime>02/15/2022 06:33:08</publishTime>
@@ -379,37 +379,37 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>02/15/2022 06:38:42</publishTime>
</File>
<File Include="bin/Swashbuckle.Core.dll">
<publishTime>08/07/2017 03:30:56</publishTime>
<publishTime>07/08/2017 03:30:56</publishTime>
</File>
<File Include="bin/Syncfusion.Compression.Base.dll">
<publishTime>01/08/2025 12:18:28</publishTime>
<publishTime>08/01/2025 12:18:28</publishTime>
</File>
<File Include="bin/Syncfusion.DocIO.Base.dll">
<publishTime>08/01/2025 12:21:18</publishTime>
<publishTime>01/08/2025 12:21:18</publishTime>
</File>
<File Include="bin/Syncfusion.DocToPDFConverter.Base.dll">
<publishTime>01/08/2025 12:24:08</publishTime>
<publishTime>08/01/2025 12:24:08</publishTime>
</File>
<File Include="bin/Syncfusion.ExcelToPDFConverter.Base.dll">
<publishTime>01/08/2025 12:29:16</publishTime>
<publishTime>08/01/2025 12:29:16</publishTime>
</File>
<File Include="bin/Syncfusion.Licensing.dll">
<publishTime>01/08/2025 12:14:22</publishTime>
<publishTime>08/01/2025 12:14:22</publishTime>
</File>
<File Include="bin/Syncfusion.Markdown.dll">
<publishTime>02/02/2026 09:00:38</publishTime>
</File>
<File Include="bin/Syncfusion.OfficeChart.Base.dll">
<publishTime>01/08/2025 12:19:40</publishTime>
<publishTime>08/01/2025 12:19:40</publishTime>
</File>
<File Include="bin/Syncfusion.Pdf.Base.dll">
<publishTime>01/08/2025 12:23:02</publishTime>
<publishTime>08/01/2025 12:23:02</publishTime>
</File>
<File Include="bin/Syncfusion.Presentation.Base.dll">
<publishTime>01/08/2025 12:28:16</publishTime>
<publishTime>08/01/2025 12:28:16</publishTime>
</File>
<File Include="bin/Syncfusion.XlsIO.Base.dll">
<publishTime>01/08/2025 12:25:24</publishTime>
<publishTime>08/01/2025 12:25:24</publishTime>
</File>
<File Include="bin/System.Buffers.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
@@ -418,10 +418,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>05/15/2018 15:29:36</publishTime>
</File>
<File Include="bin/System.IO.Pipelines.dll">
<publishTime>02/12/2025 00:12:24</publishTime>
<publishTime>12/02/2025 00:12:24</publishTime>
</File>
<File Include="bin/System.Memory.dll">
<publishTime>08/05/2022 05:31:02</publishTime>
<publishTime>05/08/2022 05:31:02</publishTime>
</File>
<File Include="bin/System.Net.Http.Formatting.dll">
<publishTime>10/20/2023 22:33:52</publishTime>
@@ -433,10 +433,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>10/23/2021 01:40:18</publishTime>
</File>
<File Include="bin/System.Text.Encodings.Web.dll">
<publishTime>02/12/2025 00:18:34</publishTime>
<publishTime>12/02/2025 00:18:34</publishTime>
</File>
<File Include="bin/System.Text.Json.dll">
<publishTime>02/12/2025 00:18:50</publishTime>
<publishTime>12/02/2025 00:18:50</publishTime>
</File>
<File Include="bin/System.Threading.Tasks.Extensions.dll">
<publishTime>02/19/2020 11:05:18</publishTime>
@@ -445,7 +445,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>05/15/2018 15:29:52</publishTime>
</File>
<File Include="bin/System.Web.Cors.dll">
<publishTime>01/10/2013 22:54:22</publishTime>
<publishTime>10/01/2013 22:54:22</publishTime>
</File>
<File Include="bin/System.Web.Helpers.dll">
<publishTime>10/20/2023 22:33:58</publishTime>
@@ -463,7 +463,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>01/01/0001 00:00:00</publishTime>
</File>
<File Include="bin/System.Web.Optimization.dll">
<publishTime>11/02/2014 15:26:04</publishTime>
<publishTime>02/11/2014 15:26:04</publishTime>
</File>
<File Include="bin/System.Web.Razor.dll">
<publishTime>10/20/2023 22:33:48</publishTime>
@@ -484,10 +484,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/31/2026 10:28:22</publishTime>
</File>
<File Include="bin/VBFileManagement.dll">
<publishTime>02/28/2026 10:14:01</publishTime>
<publishTime>05/07/2026 18:34:54</publishTime>
</File>
<File Include="bin/VBFileManagement.pdb">
<publishTime>02/28/2026 10:14:01</publishTime>
<publishTime>05/07/2026 18:34:54</publishTime>
</File>
<File Include="bin/VBOffice.dll">
<publishTime>03/31/2026 10:28:22</publishTime>
@@ -496,124 +496,124 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/31/2026 10:28:22</publishTime>
</File>
<File Include="bin/Versandstrasse.dll">
<publishTime>04/26/2026 07:46:15</publishTime>
<publishTime>05/14/2026 10:34:01</publishTime>
</File>
<File Include="bin/Versandstrasse.pdb">
<publishTime>04/26/2026 07:46:15</publishTime>
<publishTime>05/14/2026 10:34:01</publishTime>
</File>
<File Include="bin/WebActivatorEx.dll">
<publishTime>05/10/2016 15:11:52</publishTime>
<publishTime>10/05/2016 15:11:52</publishTime>
</File>
<File Include="bin/WebGrease.dll">
<publishTime>01/23/2014 13:57:34</publishTime>
</File>
<File Include="bin/x64/libSkiaSharp.dll">
<publishTime>06/02/2026 17:20:26</publishTime>
<publishTime>02/06/2026 17:20:26</publishTime>
</File>
<File Include="bin/x86/libSkiaSharp.dll">
<publishTime>06/02/2026 17:20:00</publishTime>
<publishTime>02/06/2026 17:20:00</publishTime>
</File>
<File Include="CLM.aspx">
<publishTime>03/17/2026 13:46:05</publishTime>
</File>
<File Include="Content/bootstrap-grid.css">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Content/bootstrap-grid.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.min.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.min.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.min.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-grid.rtl.min.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.min.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.min.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.min.css">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-reboot.rtl.min.css.map">
<publishTime>03/06/2024 09:16:16</publishTime>
<publishTime>06/03/2024 09:16:16</publishTime>
</File>
<File Include="Content/bootstrap-utilities.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.min.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.min.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.min.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap-utilities.rtl.min.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.min.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.min.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.css.map">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.min.css">
<publishTime>03/06/2024 09:16:15</publishTime>
<publishTime>06/03/2024 09:16:15</publishTime>
</File>
<File Include="Content/bootstrap.rtl.min.css.map">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Content/Site.css">
<publishTime>03/06/2024 08:11:55</publishTime>
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="DocTester.aspx">
<publishTime>02/13/2026 07:13:12</publishTime>
@@ -622,7 +622,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>02/08/2026 09:59:34</publishTime>
</File>
<File Include="favicon.ico">
<publishTime>03/06/2024 08:11:55</publishTime>
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Global.asax">
<publishTime>07/19/2024 12:25:43</publishTime>
@@ -637,73 +637,73 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/24/2026 14:38:16</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.js">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.js.map">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.min.js">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.bundle.min.js.map">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.js">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.js.map">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.min.js">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.esm.min.js.map">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.js">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.js.map">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js">
<publishTime>03/06/2024 09:16:14</publishTime>
<publishTime>06/03/2024 09:16:14</publishTime>
</File>
<File Include="Scripts/bootstrap.min.js.map">
<publishTime>03/06/2024 09:16:13</publishTime>
<publishTime>06/03/2024 09:16:13</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.js">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.min.js">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.min.map">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.js">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.min.js">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/jquery-3.7.1.slim.min.map">
<publishTime>03/06/2024 09:16:17</publishTime>
<publishTime>06/03/2024 09:16:17</publishTime>
</File>
<File Include="Scripts/modernizr-2.8.3.js">
<publishTime>03/06/2024 08:12:04</publishTime>
<publishTime>06/03/2024 08:12:04</publishTime>
</File>
<File Include="SelectTable.aspx">
<publishTime>02/01/2026 13:52:15</publishTime>
</File>
<File Include="Views/Home/APIGenerator.cshtml">
<publishTime>01/10/2024 20:21:44</publishTime>
<publishTime>10/01/2024 20:21:44</publishTime>
</File>
<File Include="Views/Home/Index.cshtml">
<publishTime>03/13/2026 09:58:47</publishTime>
</File>
<File Include="Views/Shared/Error.cshtml">
<publishTime>03/06/2024 08:11:55</publishTime>
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Views/Shared/_Layout.cshtml">
<publishTime>04/14/2025 18:11:03</publishTime>
@@ -712,10 +712,10 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<publishTime>03/13/2026 10:00:16</publishTime>
</File>
<File Include="Views/_ViewStart.cshtml">
<publishTime>03/06/2024 08:11:55</publishTime>
<publishTime>06/03/2024 08:11:55</publishTime>
</File>
<File Include="Web.config">
<publishTime>04/24/2026 06:24:39</publishTime>
<publishTime>05/11/2026 13:25:55</publishTime>
</File>
</ItemGroup>
</Project>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
@@ -220,9 +220,18 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\WebActivatorEx.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\WebGrease.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Pdf.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDocOffice.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.XlsIO.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocToPDFConverter.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.ExcelToPDFConverter.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficePrinter.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\BarcodeLib.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Licensing.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.Database.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBOffice.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\vbBarcodes.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.dll
@@ -234,6 +243,9 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.DataVisualizati
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\FastReport.Editor.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Database.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Database.dll.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.dll.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Logging.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Logging.dll.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Helper.pdb
@@ -284,9 +296,17 @@ E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Antlr3.Runtime.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBFileManagement.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Pdf.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OnDocOffice.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.XlsIO.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocToPDFConverter.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.ExcelToPDFConverter.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficePrinter.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\BarcodeLib.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\NLog.Database.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBOffice.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\VBOffice.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\vbBarcodes.pdb
@@ -307,23 +327,3 @@ 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\OnDoc_NetFramework.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\obj\Debug\OnDoc_NetFramework.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficePrinter.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\DOCGEN.dll.config
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\OfficePrinter.pdb
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Pdf.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.XlsIO.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocToPDFConverter.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.ExcelToPDFConverter.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Licensing.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.dll
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Pdf.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.XlsIO.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.DocToPDFConverter.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.ExcelToPDFConverter.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Presentation.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.Compression.Base.xml
E:\Software-Projekte\OnDoc\OnDoc\API_NetFramework\bin\Syncfusion.OfficeChart.Base.xml
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
1ae71e828c9c3f6b53e1ce444d9b9a890228fd0b745f80483f22d279bc5ec4cf
29442f56ffe6512195e0a44c4b5996ec63580c54f5e48400620b56772a6c35f0
Binary file not shown.
Binary file not shown.
+11
View File
@@ -481,6 +481,12 @@
<Compile Include="Diverses\frmMail.Designer.cs">
<DependentUpon>frmMail.cs</DependentUpon>
</Compile>
<Compile Include="Diverses\frmVorlagenuebernahme.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Diverses\frmVorlagenuebernahme.Designer.cs">
<DependentUpon>frmVorlagenuebernahme.cs</DependentUpon>
</Compile>
<Compile Include="Diverses\InputDialog.cs">
<SubType>Form</SubType>
</Compile>
@@ -796,6 +802,7 @@
</Compile>
<EmbeddedResource Include="Diverses\ApprovalNotes.resx">
<DependentUpon>ApprovalNotes.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Diverses\DokHistory.resx">
<DependentUpon>DokHistory.cs</DependentUpon>
@@ -815,6 +822,9 @@
<EmbeddedResource Include="Diverses\frmMail.resx">
<DependentUpon>frmMail.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Diverses\frmVorlagenuebernahme.resx">
<DependentUpon>frmVorlagenuebernahme.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Diverses\InputDialog.resx">
<DependentUpon>InputDialog.cs</DependentUpon>
</EmbeddedResource>
@@ -918,6 +928,7 @@
</EmbeddedResource>
<EmbeddedResource Include="UIControls\Administrator\Admin_Taableeditor.resx">
<DependentUpon>Admin_Taableeditor.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="UIControls\Administrator\Dokumenttyp.resx">
<DependentUpon>Dokumenttyp.cs</DependentUpon>
+1 -1
View File
@@ -65,7 +65,7 @@
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(472, 26);
this.label2.TabIndex = 2;
this.label2.Text = "26. April 2026";
this.label2.Text = "8. Mai 2026";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label2.Click += new System.EventHandler(this.label2_Click);
//
+65
View File
@@ -0,0 +1,65 @@
namespace OnDoc.Diverses
{
partial class frmVorlagenuebernahme
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.sfDataGrid1 = new Syncfusion.WinForms.DataGrid.SfDataGrid();
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit();
this.SuspendLayout();
//
// sfDataGrid1
//
this.sfDataGrid1.AccessibleName = "Table";
this.sfDataGrid1.AutoSizeColumnsMode = Syncfusion.WinForms.DataGrid.Enums.AutoSizeColumnsMode.AllCellsWithLastColumnFill;
this.sfDataGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
this.sfDataGrid1.Location = new System.Drawing.Point(0, 0);
this.sfDataGrid1.Name = "sfDataGrid1";
this.sfDataGrid1.PreviewRowHeight = 35;
this.sfDataGrid1.Size = new System.Drawing.Size(1087, 521);
this.sfDataGrid1.TabIndex = 1;
this.sfDataGrid1.Text = "sfDataGrid1";
//
// frmVorlagenuebernahme
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1087, 521);
this.Controls.Add(this.sfDataGrid1);
this.Name = "frmVorlagenuebernahme";
this.Text = "Vorlagen-Synchronisation";
this.Load += new System.EventHandler(this.frmVorlagenuebernahme_Load);
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Syncfusion.WinForms.DataGrid.SfDataGrid sfDataGrid1;
}
}
+30
View File
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Database;
using OnDoc.Klassen;
namespace OnDoc.Diverses
{
public partial class frmVorlagenuebernahme : Form
{
public frmVorlagenuebernahme()
{
InitializeComponent();
}
private void frmVorlagenuebernahme_Load(object sender, EventArgs e)
{
DB db = new DB(AppParams.connectionstring);
db.Get_Tabledata("select * from OnDoc_Admin_VorlagenSync order by desc", false, true);
sfDataGrid1.DataSource = db.dsdaten.Tables[0];
}
}
}
+120
View File
@@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
+1 -1
View File
@@ -283,7 +283,7 @@
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABm
DgAAAk1TRnQBSQFMAgEBCAEAAcABAQHAAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
DgAAAk1TRnQBSQFMAgEBCAEAAdABAQHQAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAATADAAEBAQABCAYAAQwYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
+103 -7
View File
@@ -28,6 +28,7 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo treeNodeAdvStyleInfo1 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdvStyleInfo();
Syncfusion.Windows.Forms.Tools.TreeNodeAdv treeNodeAdv1 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
Syncfusion.Windows.Forms.Tools.TreeNodeAdv treeNodeAdv2 = new Syncfusion.Windows.Forms.Tools.TreeNodeAdv();
@@ -56,6 +57,7 @@
this.tsbtncopy = new System.Windows.Forms.ToolStripButton();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.GrpUnterschrifte = new System.Windows.Forms.GroupBox();
this.cbSignierungSyncfusion = new System.Windows.Forms.CheckBox();
this.cbfaksimileStandard = new System.Windows.Forms.CheckBox();
this.lblStandard = new System.Windows.Forms.Label();
this.lbUnterschriftStandard = new System.Windows.Forms.ListBox();
@@ -146,6 +148,11 @@
this.lblfeldregeliddesc = new System.Windows.Forms.Label();
this.lblID = new System.Windows.Forms.Label();
this.lbliddesc = new System.Windows.Forms.Label();
this.tabPageAdv3 = new Syncfusion.Windows.Forms.Tools.TabPageAdv();
this.sfDataGrid2 = new Syncfusion.WinForms.DataGrid.SfDataGrid();
this.btnSetSync = new System.Windows.Forms.Button();
this.label21 = new System.Windows.Forms.Label();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.TreeDokumenttyp = new Syncfusion.Windows.Forms.Tools.TreeViewAdv();
this.panel1 = new System.Windows.Forms.Panel();
@@ -155,7 +162,8 @@
this.label16 = new System.Windows.Forms.Label();
this.rbNr = new System.Windows.Forms.RadioButton();
this.label15 = new System.Windows.Forms.Label();
this.cbSignierungSyncfusion = new System.Windows.Forms.CheckBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.label22 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.tabControlAdv1)).BeginInit();
this.tabControlAdv1.SuspendLayout();
this.tabPageAdv1.SuspendLayout();
@@ -183,6 +191,8 @@
this.groupBox5.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.grpVorlagenfeld.SuspendLayout();
this.tabPageAdv3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid2)).BeginInit();
this.groupBox7.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.TreeDokumenttyp)).BeginInit();
this.panel1.SuspendLayout();
@@ -193,12 +203,14 @@
this.tabControlAdv1.BeforeTouchSize = new System.Drawing.Size(1019, 760);
this.tabControlAdv1.Controls.Add(this.tabPageAdv1);
this.tabControlAdv1.Controls.Add(this.tabPageAdv2);
this.tabControlAdv1.Controls.Add(this.tabPageAdv3);
this.tabControlAdv1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControlAdv1.Location = new System.Drawing.Point(284, 2);
this.tabControlAdv1.Name = "tabControlAdv1";
this.tabControlAdv1.Size = new System.Drawing.Size(1019, 760);
this.tabControlAdv1.TabIndex = 0;
this.tabControlAdv1.ThemeStyle.PrimitiveButtonStyle.DisabledNextPageImage = null;
this.tabControlAdv1.SelectedIndexChanged += new System.EventHandler(this.tabControlAdv1_SelectedIndexChanged);
//
// tabPageAdv1
//
@@ -371,6 +383,14 @@
this.GrpUnterschrifte.TabStop = false;
this.GrpUnterschrifte.Text = "Unterschriften";
//
// cbSignierungSyncfusion
//
this.cbSignierungSyncfusion.Location = new System.Drawing.Point(293, 49);
this.cbSignierungSyncfusion.Name = "cbSignierungSyncfusion";
this.cbSignierungSyncfusion.Size = new System.Drawing.Size(163, 24);
this.cbSignierungSyncfusion.TabIndex = 28;
this.cbSignierungSyncfusion.Text = "Signierung Syncfusion";
//
// cbfaksimileStandard
//
this.cbfaksimileStandard.Location = new System.Drawing.Point(163, 49);
@@ -1437,6 +1457,65 @@
this.lbliddesc.TabIndex = 0;
this.lbliddesc.Text = "ID";
//
// tabPageAdv3
//
this.tabPageAdv3.Controls.Add(this.label22);
this.tabPageAdv3.Controls.Add(this.sfDataGrid2);
this.tabPageAdv3.Controls.Add(this.btnSetSync);
this.tabPageAdv3.Controls.Add(this.label21);
this.tabPageAdv3.Controls.Add(this.dateTimePicker1);
this.tabPageAdv3.Image = null;
this.tabPageAdv3.ImageSize = new System.Drawing.Size(20, 20);
this.tabPageAdv3.Location = new System.Drawing.Point(1, 25);
this.tabPageAdv3.Name = "tabPageAdv3";
this.tabPageAdv3.ShowCloseButton = true;
this.tabPageAdv3.Size = new System.Drawing.Size(1016, 733);
this.tabPageAdv3.TabIndex = 3;
this.tabPageAdv3.Text = "Synchronisation";
this.tabPageAdv3.ThemesEnabled = false;
//
// sfDataGrid2
//
this.sfDataGrid2.AccessibleName = "Table";
this.sfDataGrid2.AllowFiltering = true;
this.sfDataGrid2.AllowGrouping = false;
this.sfDataGrid2.AllowResizingColumns = true;
this.sfDataGrid2.AutoSizeColumnsMode = Syncfusion.WinForms.DataGrid.Enums.AutoSizeColumnsMode.AllCells;
this.sfDataGrid2.CopyOption = Syncfusion.WinForms.DataGrid.Enums.CopyOptions.None;
this.sfDataGrid2.Location = new System.Drawing.Point(36, 49);
this.sfDataGrid2.Name = "sfDataGrid2";
this.sfDataGrid2.PreviewRowHeight = 35;
this.sfDataGrid2.Size = new System.Drawing.Size(484, 356);
this.sfDataGrid2.TabIndex = 10;
//
// btnSetSync
//
this.btnSetSync.Location = new System.Drawing.Point(36, 453);
this.btnSetSync.Name = "btnSetSync";
this.btnSetSync.Size = new System.Drawing.Size(75, 23);
this.btnSetSync.TabIndex = 9;
this.btnSetSync.Text = "Eintragen";
this.btnSetSync.UseVisualStyleBackColor = true;
this.btnSetSync.Click += new System.EventHandler(this.btnSetSync_Click);
//
// label21
//
this.label21.AutoSize = true;
this.label21.Location = new System.Drawing.Point(33, 418);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(81, 13);
this.label21.TabIndex = 8;
this.label21.Text = "Übernahme Per";
//
// dateTimePicker1
//
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dateTimePicker1.Location = new System.Drawing.Point(120, 418);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(99, 20);
this.dateTimePicker1.TabIndex = 7;
this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
//
// groupBox7
//
this.groupBox7.Controls.Add(this.TreeDokumenttyp);
@@ -1571,13 +1650,20 @@
this.label15.TabIndex = 7;
this.label15.Text = "Sort";
//
// cbSignierungSyncfusion
// contextMenuStrip1
//
this.cbSignierungSyncfusion.Location = new System.Drawing.Point(293, 49);
this.cbSignierungSyncfusion.Name = "cbSignierungSyncfusion";
this.cbSignierungSyncfusion.Size = new System.Drawing.Size(163, 24);
this.cbSignierungSyncfusion.TabIndex = 28;
this.cbSignierungSyncfusion.Text = "Signiereung Syncfusion";
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// label22
//
this.label22.AutoSize = true;
this.label22.Location = new System.Drawing.Point(33, 19);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(51, 13);
this.label22.TabIndex = 11;
this.label22.Text = "Elemente";
//
// Dokumenttyp
//
@@ -1629,6 +1715,9 @@
this.toolStrip1.PerformLayout();
this.grpVorlagenfeld.ResumeLayout(false);
this.grpVorlagenfeld.PerformLayout();
this.tabPageAdv3.ResumeLayout(false);
this.tabPageAdv3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid2)).EndInit();
this.groupBox7.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.TreeDokumenttyp)).EndInit();
this.panel1.ResumeLayout(false);
@@ -1755,5 +1844,12 @@
private System.Windows.Forms.TextBox txturibeschreibung;
internal System.Windows.Forms.CheckBox cbfaksimileStandard;
internal System.Windows.Forms.CheckBox cbSignierungSyncfusion;
private Syncfusion.Windows.Forms.Tools.TabPageAdv tabPageAdv3;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.Button btnSetSync;
private System.Windows.Forms.Label label21;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private Syncfusion.WinForms.DataGrid.SfDataGrid sfDataGrid2;
private System.Windows.Forms.Label label22;
}
}
@@ -563,6 +563,65 @@ namespace OnDoc.UIControls.Administrator
vdb = null;
}
private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
}
private void tabControlAdv1_SelectedIndexChanged(object sender, EventArgs e)
{
if (tabControlAdv1.SelectedTab.Text == "Synchronisation")
{
DB db = new DB(AppParams.connectionstring);
db.Get_Tabledata("Select * from OnDoc_Admin_VorlagenSync_Param order by id", false, true);
db.dsdaten.Tables[0].Columns.Add("Sync", typeof(bool));
this.sfDataGrid2.DataSource=db.dsdaten.Tables[0];
sfDataGrid2.Columns[0].Width = 0;
sfDataGrid2.Columns[1].Width = 0;
db = null;
}
}
private void btnSetSync_Click(object sender, EventArgs e)
{
DB db = new DB(AppParams.connectionstring);
db.Exec_SQL("delete from OnDoc_Admin_VorlagenSync where sync_datum='"+this.dateTimePicker1.Value+"' and dokumenttypnr="+this.dokumenttypnr.ToString()+"");
db.Get_Tabledata_for_Update("Select top 1 * from OnDoc_Admin_VorlagenSync where id=-1", false, true);
DataRow dr = db.daten.Tables[0].NewRow();
DataTable sourcedata = sfDataGrid2.DataSource as DataTable;
foreach (DataRow sdr in sourcedata.Rows)
{
try {
if (Convert.ToBoolean(sdr["Sync"]) == true)
{
dr[sdr["OnDoc_Admin_VorlagenSync_Attribut"].ToString()] = true;
}
else
{
dr[sdr["OnDoc_Admin_VorlagenSync_Attribut"].ToString()] = false;
}
}
catch
{
dr[sdr["OnDoc_Admin_VorlagenSync_Attribut"].ToString()] = false;
}
}
dr["dokumenttypnr"] = this.dokumenttypnr;
dr["sync_datum"] =this.dateTimePicker1.Value;
dr["erstellt_am"] = DateTime.Now;
dr["mutiert_am"] = DateTime.Now;
dr["mutierer"] = AppParams.CurrentMitarbeiter;
dr["sync_done"] = false;
dr["sync_return"] = "";
db.daten.Tables[0].Rows.Add(dr);
db.Update_Data();
db = null;
}
}
public static class SOExtension
{
@@ -123,6 +123,9 @@
<metadata name="toolStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>227, 17</value>
</metadata>
<metadata name="contextMenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>353, 17</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>25</value>
</metadata>
@@ -93,7 +93,13 @@ namespace OnDoc.UIControls.Administrator
{
var data = e.NewObject as dynamic;
try
{
data["aktiv"] = true;
}
catch
{}
data["erstellt_am"] = DateTime.Now;
data["mutiert_am"] = DateTime.Now;
data["mutierer"]=AppParams.CurrentMitarbeiter;
-1
View File
@@ -547,7 +547,6 @@ namespace OnDoc.UICintrols
this.sfDataGrid1.ShowGroupDropArea = true;
this.sfDataGrid1.ShowToolTip = true;
this.sfDataGrid1.Size = new System.Drawing.Size(1709, 341);
// this.sfDataGrid1.Style.DragPreviewRowStyle.Font = new System.Drawing.Font("Segoe UI", 9F);
this.sfDataGrid1.TabIndex = 0;
this.sfDataGrid1.ValidationMode = Syncfusion.WinForms.DataGrid.Enums.GridValidationMode.InView;
this.sfDataGrid1.ToolTipOpening += new Syncfusion.WinForms.DataGrid.Events.ToolTipOpeningEventHandler(this.sfDataGrid1_ToolTipOpening_1);
+41 -6
View File
@@ -382,9 +382,10 @@ namespace OnDoc.Versandstrasse
}
}
int doccount = 0;
foreach (TreeNodeAdv dokumentnode in node.Nodes)
{
doccount = doccount + 1;
if (dokumentnode.Tag.ToString().Contains("ATT"))
{
hastattachment = true;
@@ -407,7 +408,26 @@ namespace OnDoc.Versandstrasse
// anzbp = anzbp + 1;
//}
//Versandstrasse möglich
////Versandstrasse möglich
//rbb1post.Enabled = true;
//rbb2post.Enabled = true;
//rbapost.Enabled = true;
if (Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["Postzustellung"]) == 5 && nodecounter == 0)
{
forceeinschreiben = true;
}
if (forceeinschreiben == false && Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["Postzustellung"]) == 5 && nodecounter > 0)
{
// set_nodeimage(dokumentnode, 0);
add_errormessage(4, "Im Versand-Couvert liegt ein Dokument, welches als EINSCHREIBEN versendet wird, jedoch nicht an erster Position ist.");
versandbereit = false;
}
// rbb1post.Enabled = false;
// rbb2post.Enabled = false;
// rbapost.Enabled = false;
// rbb2post.Checked = false;
//
//}
if (Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["vsm"]) == 0)
{
set_nodeimage(dokumentnode, 0);
@@ -416,7 +436,7 @@ namespace OnDoc.Versandstrasse
}
else
{
if (Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["Postzustellung"]) > 1)
if (Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["Postzustellung"]) > 1 && Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["Postzustellung"]) != 5)
{
set_nodeimage(dokumentnode, 2);
versandbereit = false;
@@ -1332,24 +1352,31 @@ namespace OnDoc.Versandstrasse
catch { }
}
bool forceeinschreiben = false;
private void treeViewAdv1_AfterSelect(object sender, EventArgs e)
{
try
{
this.panelVerify.Visible = false;
Cursor.Current = Cursors.WaitCursor;
TreeNodeAdv node = treeViewAdv1.SelectedNode;
if (node.Level == 1)
{
forceeinschreiben = false;
if (Verify_Couvert(node) == false)
{
GrpPaketDetails.Enabled = false;
return;
}
GrpPaketDetails.Enabled = true;
Versandpaket paket = node.TagObject as Versandpaket; ;
if (forceeinschreiben) { rbeinschreiben.Checked = true; }
rbapost.Enabled = true;
rbb1post.Enabled = true;
rbb2post.Enabled = true;
switch (paket.Versandoption)
{
case "A_POST":
@@ -1359,12 +1386,20 @@ namespace OnDoc.Versandstrasse
case "B2_POST":
rbb2post.Checked = true; break;
case "EINSCHREIBEN":
rbeinschreiben.Checked = true;break;
rbeinschreiben.Checked = true;
if (forceeinschreiben)
{
rbapost.Enabled = false;
rbb1post.Enabled = false;
rbb2post.Enabled = false;
}
break;
default:
rbb2post.Checked = true; break;
}
if (paket.GAS != "")
{
this.chkGAS.Checked = true;
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

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