Codebasis als Dateien ins Arbeitsrepo statt als Gitlink

QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142)
getrackt, ohne .gitmodules und ohne erreichbares Remote. Der
Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar
gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege
der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen.

Umstellung:
- Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert
  (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6)
- Gitlink aus dem Index entfernt
- Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB

Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte
bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
This commit is contained in:
Christoph Schwörer
2026-08-26 07:43:51 +02:00
parent 18edae75b6
commit f045b99a25
24664 changed files with 5846716 additions and 1 deletions
@@ -0,0 +1,148 @@
using Centron.BusinessLogic;
using Centron.BusinessLogic.EmployeeArea;
using Centron.BusinessLogic.Warehousing;
using Centron.BusinessLogic.WebServices.Warehousing;
using Centron.Data.Lists;
using Centron.Data.WebServices.Warehousing;
using Centron.Data.WebServices.Warehousing.Barcode;
using Centron.Interfaces.Warehousing;
using Centron.Tests.EndToEnd.Infrastructure;
using System;
using System.Collections.Generic;
using Centron.BusinessLogic.WebServices.Sales.Receipts;
using Centron.Interfaces;
using Xunit.Abstractions;
namespace Centron.Tests.EndToEnd.Tests.Barcodes
{
public class BarcodeTest : EndToEndTest
{
public BarcodeTest(ITestOutputHelper testOutputHelper)
: base(testOutputHelper)
{
}
public override void Execute()
{
var barcodes = this.GetBarcodesThroughPaging();
this.SearchByBarcode(barcodes.Result[1].Name);
this.SearchByArticle();
this.CreateBarcode();
this.GetBarcodeHistory(barcodes.Result[1].I3D);
this.SearchByReceipt();
}
private BarCode2DTO CreateBarcode()
{
using (var session = new BLSession())
{
var user = session.GetBL<AppUserBL>().GetAppUser(f => f.I3D == 11);
var barcodeResult = session.GetBL<BarcodeWebServiceBL>().CreateNewSerialNumber(
1209,
new List<string> { "My-Cool-Barcode" },
-1,
"Need a barcode to create a invoice",
user,
adjustStockInventory: true,
returnBarcodesWithAdditionalInformations: true,
string.Empty);
this.Verifier.Verify("CreatedBarcode", barcodeResult);
return barcodeResult.Data[0];
}
}
private SerialNumberListThroughPagingDTO GetBarcodesThroughPaging()
{
using (var session = new BLSession())
{
var filter = new BarcodeFilter
{
States = new List<int> { 1 },
};
var barcodes = session.GetBL<BarcodeWebServiceBL>().GetBarcodesThroughPaging(filter, 1, 5);
this.Verifier.Verify("GetBarcodesThroughPaging", barcodes);
return barcodes;
}
}
private SerialNumberListThroughPagingDTO SearchByBarcode(string barcode)
{
using (var session = new BLSession())
{
var filter = new BarcodeFilter
{
Barcode = barcode,
};
var barcodes = session.GetBL<BarcodeWebServiceBL>().GetBarcodesThroughPaging(filter, 1, 20);
this.Verifier.Verify("SearchByBarcode", barcodes);
return barcodes;
}
}
private SerialNumberListThroughPagingDTO SearchByArticle()
{
using (var session = new BLSession())
{
var filter = new BarcodeFilter
{
ArticleI3Ds = new List<int> { 44, 45 },
};
var barcodes = session.GetBL<BarcodeWebServiceBL>().GetBarcodesThroughPaging(filter, 1, 20);
this.Verifier.Verify("SearchByArticle", barcodes);
return barcodes;
}
}
private PagingList<BarCodeHistoryDTO> GetBarcodeHistory(int barcodeI3D)
{
using (var session = new BLSession())
{
var filter = new BarCodeHistoryFilter
{
BarcodeI3Ds = new List<int> { barcodeI3D },
DateFrom = new DateTime(2010, 01, 01),
};
var barcodeHistoryResult = session.GetBL<BarcodeHistoryWebServiceBL>().SearchBarCodeHistoriesThroughPaging(filter, 1, 20);
this.Verifier.Verify("GetBarcodeHistory", barcodeHistoryResult);
return barcodeHistoryResult;
}
}
private void SearchByReceipt()
{
Search(articleI3D: 4355, CentronObjectKindNumeric.InvoiceClass, 6578);
Search(articleI3D: 4355, CentronObjectKindNumeric.InvoiceClass, 6578, receiptItemI3D :25998); //This should work too
Search(articleI3D: 4364, CentronObjectKindNumeric.OrderClass, 4381);
Search(articleI3D: 4364, CentronObjectKindNumeric.OrderClass, 4381, receiptItemI3D: 7315); //This should work too
Search(articleI3D: 4364, CentronObjectKindNumeric.OrderClass, 4381, receiptItemI3D: 11111); //This should not work at all
void Search(int articleI3D, CentronObjectKindNumeric receiptKind, int receiptI3D, int? receiptItemI3D = null)
{
using var session = new BLSession();
var filter = new BarcodeFilter
{
ArticleI3Ds = new List<int> { articleI3D },
ForReceiptKind = receiptKind,
ForReceiptI3D = receiptI3D,
ForReceiptItemI3D = receiptItemI3D,
};
var barcodes = session.GetBL<BarcodeWebServiceBL>().GetBarcodesThroughPaging(filter, 1, int.MaxValue);
this.Verifier.Verify($"SearchByReceipt_{articleI3D}_{receiptKind.GetReceiptName()}_{receiptI3D}_{receiptItemI3D}", barcodes);
}
}
}
}
@@ -0,0 +1,41 @@
{
Data: [
{
ArticleCode: '103',
ArticleI3D: 1209,
BarcodeConditionI3D: null,
CreationDate: DateTime,
CreatorI3D: 22,
CreatorSign: 'ADMIN',
DeliveryNoteNumber: null,
DeliveryPositionI3D: null,
Description: null,
DeviceHeadNumber: null,
DevicePositionI3D: null,
I3D: 5911,
ImportedFrom: null,
InvoiceNumber: null,
InvoicePositionI3D: null,
IsInRma: false,
LossStocktakingI3D: null,
OrderNumber: null,
OrderPositionI3D: null,
OwnerPositionI3D: null,
ProductHeadI3D: 0,
ProductHeadReciever: null,
RepairNumber: null,
Serialnumber: 'My-Cool-Barcode',
SNPartsList: null,
State: 1,
StockCaption: 'Hauptlager',
StockI3D: -1,
StockReceiptNumber: null,
SupplierDeliveryListPositionI3D: null,
SupplierInvoicePositionI3D: null
}
],
Error: null,
Message: null,
MessageCode: null,
Status: 0
}
@@ -0,0 +1,76 @@
{
Count: 1,
CurrentPage: 1,
PageCount: 1,
Result: [
{
Barcode: {
ArticleCode: null,
ArticleI3D: 44,
BarcodeConditionI3D: null,
CreationDate: DateTime,
CreatorI3D: 25,
CreatorSign: 'MAHE',
DeliveryNoteNumber: null,
DeliveryPositionI3D: null,
Description: null,
DeviceHeadNumber: null,
DevicePositionI3D: null,
I3D: 16,
ImportedFrom: null,
InvoiceNumber: null,
InvoicePositionI3D: null,
IsInRma: false,
LossStocktakingI3D: null,
OrderNumber: null,
OrderPositionI3D: null,
OwnerPositionI3D: 0,
ProductHeadI3D: 0,
ProductHeadReciever: null,
RepairNumber: null,
Serialnumber: 'ergerge',
SNPartsList: 0,
State: 1,
StockCaption: null,
StockI3D: null,
StockReceiptNumber: null,
SupplierDeliveryListPositionI3D: 44,
SupplierInvoicePositionI3D: null
},
BarcodeState: 2,
Date: DateTime,
Editor: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Lehnert, Volker (VL)',
Email: 'lehnert@c-entron.de',
Employeenumber: 0,
FirstName: 'Volker',
FullName: 'Lehnert, Volker (VL)',
I3D: 44,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Lehnert',
LeavingDate: DateTime,
Phone1: '',
RemainingDaysOfVacation: 0.0,
ShortSign: 'VL',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 0.0
},
I3D: 439,
ObjectI3D: 95,
ObjectNumber: 20019,
State: null,
Text: 'Aus Auftrag 20019 entfernt.',
Version: 2
}
]
}
@@ -0,0 +1,297 @@
{
Count: 454,
CurrentPage: 1,
PageCount: 91,
Result: [
{
ArticleCode: 'PW385EA#ABD',
ArticleDescription: 'WKST XW9400 AMD 2218 2X-2.6G 4\r\nMinitower/ 2x/ AMD Opteron 2218/ 2600 MHz/ 4096 (4x 1024) MB RAM/ 250 GB HDD/ SATA/ DVD+/-RW/ NVIDIA Quadro fx3500/ 256 MB/ Ethernet 10/100/1000B-TX/ Win XP Prof',
ArticleI3D: 45,
AufPosI3D: null,
BestPosI3D: 45,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 17,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'rftg678j',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 13,
SupplierDeliveryListName: 'COS Distribution AG',
SupplierDeliveryListNumber: 17013,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '34er5',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '56tz78',
SupplierNetPriceComplete: 7630.00,
SupplierTaxPriceComplete: 1449.70,
SystemIdentifierNumber: 1016,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'CF-30CTQCZBG',
ArticleDescription: 'Toughbook CF-30 - CTQCZBG\r\n(Bluetooth + GPS)/ Intel Core Duo L2400 (1.66 GHz / 2 MB L2 / 667 MHz)/ 512 MB RAM/ DDR2-533/ 13,3" XGA TFT (1024 x 768 Pixel)/ Intel 945 GM/ 80 GB HDD/ kein Laufwerk/ 56K, Bluetooth, GPS, LAN 10/100/1000, WLAN 802.11a/b/g/ Windows XP Professional',
ArticleI3D: 44,
AufPosI3D: null,
BestPosI3D: 44,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 16,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'ergerge',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 13,
SupplierDeliveryListName: 'COS Distribution AG',
SupplierDeliveryListNumber: 17013,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '34er5',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '56tz78',
SupplierNetPriceComplete: 7630.00,
SupplierTaxPriceComplete: 1449.70,
SystemIdentifierNumber: 1015,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'G909X-W00-10.0',
ArticleDescription: 'IBM ViaVoice f/ Win Pro USB E\r\nIBM ViaVoice f/ Win Pro USB incl. USB Headset/ 10.5/ englisch/ Vollversion/ Format: Box/ Datenträger: CD/ Win 2000 Pro, Win 98 SE, Win NT 4.0, Win XP Home, Win XP Prof',
ArticleI3D: 42,
AufPosI3D: null,
BestPosI3D: 41,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 15,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: '3e4redf',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 12,
SupplierDeliveryListName: 'COS Distribution AG',
SupplierDeliveryListNumber: 17012,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '5rt67',
SupplierInvoiceReceiptDate: null,
SupplierInvoiceReceiptNumber: null,
SupplierNetPriceComplete: 4624.00,
SupplierTaxPriceComplete: 878.56,
SystemIdentifierNumber: 1014,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'C8549A#003',
ArticleDescription: 'HP ColorLaserjet 9500 MFP A3 color Laserdrucker (DE)\r\nLaserdrucker color',
ArticleI3D: 29,
AufPosI3D: null,
BestPosI3D: null,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 14,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: '67utzhg',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: null,
SupplierDeliveryListI3D: 0,
SupplierDeliveryListName: null,
SupplierDeliveryListNumber: null,
SupplierDeliveryListReceiptDate: null,
SupplierDeliveryListReceiptNumber: null,
SupplierInvoiceReceiptDate: null,
SupplierInvoiceReceiptNumber: null,
SupplierNetPriceComplete: null,
SupplierTaxPriceComplete: null,
SystemIdentifierNumber: 1013,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'UG652PE',
ArticleDescription: 'HP eCarePack 1Jahr 4H 13hx5d VOS ML370 G4\r\nServer Garantie+',
ArticleI3D: 18,
AufPosI3D: null,
BestPosI3D: 5,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 1,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'hfzrhbjfkf',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 2,
SupplierDeliveryListName: 'Actebis Peacock GmbH',
SupplierDeliveryListNumber: 17002,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: null,
SupplierInvoiceReceiptNumber: null,
SupplierNetPriceComplete: 707.87,
SupplierTaxPriceComplete: 134.50,
SystemIdentifierNumber: 1000,
WarrantyType: 0,
WarrantyValue: 0
}
]
}
@@ -0,0 +1,123 @@
{
Count: 2,
CurrentPage: 1,
PageCount: 1,
Result: [
{
ArticleCode: 'PW385EA#ABD',
ArticleDescription: 'WKST XW9400 AMD 2218 2X-2.6G 4\r\nMinitower/ 2x/ AMD Opteron 2218/ 2600 MHz/ 4096 (4x 1024) MB RAM/ 250 GB HDD/ SATA/ DVD+/-RW/ NVIDIA Quadro fx3500/ 256 MB/ Ethernet 10/100/1000B-TX/ Win XP Prof',
ArticleI3D: 45,
AufPosI3D: null,
BestPosI3D: 45,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 17,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'rftg678j',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 13,
SupplierDeliveryListName: 'COS Distribution AG',
SupplierDeliveryListNumber: 17013,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '34er5',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '56tz78',
SupplierNetPriceComplete: 7630.00,
SupplierTaxPriceComplete: 1449.70,
SystemIdentifierNumber: 1016,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'CF-30CTQCZBG',
ArticleDescription: 'Toughbook CF-30 - CTQCZBG\r\n(Bluetooth + GPS)/ Intel Core Duo L2400 (1.66 GHz / 2 MB L2 / 667 MHz)/ 512 MB RAM/ DDR2-533/ 13,3" XGA TFT (1024 x 768 Pixel)/ Intel 945 GM/ 80 GB HDD/ kein Laufwerk/ 56K, Bluetooth, GPS, LAN 10/100/1000, WLAN 802.11a/b/g/ Windows XP Professional',
ArticleI3D: 44,
AufPosI3D: null,
BestPosI3D: 44,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 16,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'ergerge',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 13,
SupplierDeliveryListName: 'COS Distribution AG',
SupplierDeliveryListNumber: 17013,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '34er5',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '56tz78',
SupplierNetPriceComplete: 7630.00,
SupplierTaxPriceComplete: 1449.70,
SystemIdentifierNumber: 1015,
WarrantyType: 0,
WarrantyValue: 0
}
]
}
@@ -0,0 +1,65 @@
{
Count: 1,
CurrentPage: 1,
PageCount: 1,
Result: [
{
ArticleCode: 'CF-30CTQCZBG',
ArticleDescription: 'Toughbook CF-30 - CTQCZBG\r\n(Bluetooth + GPS)/ Intel Core Duo L2400 (1.66 GHz / 2 MB L2 / 667 MHz)/ 512 MB RAM/ DDR2-533/ 13,3" XGA TFT (1024 x 768 Pixel)/ Intel 945 GM/ 80 GB HDD/ kein Laufwerk/ 56K, Bluetooth, GPS, LAN 10/100/1000, WLAN 802.11a/b/g/ Windows XP Professional',
ArticleI3D: 44,
AufPosI3D: null,
BestPosI3D: 44,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 16,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: null,
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'ergerge',
OrderCustomerI3D: null,
OrderCustomerName: null,
OrderDate: null,
OrderI3D: null,
OrderNetPriceComplete: null,
OrderNumber: null,
OrderTaxPriceComplete: null,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 1,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 13,
SupplierDeliveryListName: 'COS Distribution AG',
SupplierDeliveryListNumber: 17013,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '34er5',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '56tz78',
SupplierNetPriceComplete: 7630.00,
SupplierTaxPriceComplete: 1449.70,
SystemIdentifierNumber: 1015,
WarrantyType: 0,
WarrantyValue: 0
}
]
}
@@ -0,0 +1,65 @@
{
Count: 1,
CurrentPage: 1,
PageCount: 1,
Result: [
{
ArticleCode: 'QW971A',
ArticleDescription: '16GB 1-port PCIe Fibre Channel Host Bus Adapter',
ArticleI3D: 4355,
AufPosI3D: 7175,
BestPosI3D: 4575,
CreatedAt: DateTime,
DeliveryListCustomerI3D: 10000,
DeliveryListCustomerName: 'c-entron software gmbh',
DeliveryListDate: DateTime,
DeliveryListI3D: 5166,
DeliveryListNetPriceComplete: 9574.37,
DeliveryListNumber: 30166,
DeliveryListTaxPriceComplete: 1819.13,
Description: null,
I3D: 5718,
InvoiceCustomerI3D: 10000,
InvoiceCustomerName: 'c-entron software gmbh',
InvoiceDate: DateTime,
InvoiceI3D: 6578,
InvoiceNetPriceComplete: 10316.57,
InvoiceNumber: 40285,
InvoiceTaxPriceComplete: 1960.15,
IsInRma: false,
Kreditorcode: '943803A',
LiefPosI3D: 5728,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'sadfsadfasdfasd',
OrderCustomerI3D: 10000,
OrderCustomerName: 'c-entron software gmbh',
OrderDate: DateTime,
OrderI3D: 4370,
OrderNetPriceComplete: 12714.37,
OrderNumber: 20374,
OrderTaxPriceComplete: 2187.73,
RechPosI3D: 25998,
SecondaryStockI3D: 7,
State: 4,
StorageName: 'Lehnert Auto',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 4141,
SupplierDeliveryListName: 'Ingram Micro Distributions GmbH',
SupplierDeliveryListNumber: 17145,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '567890uzh',
SupplierNetPriceComplete: 10150.76,
SupplierTaxPriceComplete: 1928.64,
SystemIdentifierNumber: 0,
WarrantyType: 0,
WarrantyValue: 0
}
]
}
@@ -0,0 +1,65 @@
{
Count: 1,
CurrentPage: 1,
PageCount: 1,
Result: [
{
ArticleCode: 'QW971A',
ArticleDescription: '16GB 1-port PCIe Fibre Channel Host Bus Adapter',
ArticleI3D: 4355,
AufPosI3D: 7175,
BestPosI3D: 4575,
CreatedAt: DateTime,
DeliveryListCustomerI3D: 10000,
DeliveryListCustomerName: 'c-entron software gmbh',
DeliveryListDate: DateTime,
DeliveryListI3D: 5166,
DeliveryListNetPriceComplete: 9574.37,
DeliveryListNumber: 30166,
DeliveryListTaxPriceComplete: 1819.13,
Description: null,
I3D: 5718,
InvoiceCustomerI3D: 10000,
InvoiceCustomerName: 'c-entron software gmbh',
InvoiceDate: DateTime,
InvoiceI3D: 6578,
InvoiceNetPriceComplete: 10316.57,
InvoiceNumber: 40285,
InvoiceTaxPriceComplete: 1960.15,
IsInRma: false,
Kreditorcode: '943803A',
LiefPosI3D: 5728,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'sadfsadfasdfasd',
OrderCustomerI3D: 10000,
OrderCustomerName: 'c-entron software gmbh',
OrderDate: DateTime,
OrderI3D: 4370,
OrderNetPriceComplete: 12714.37,
OrderNumber: 20374,
OrderTaxPriceComplete: 2187.73,
RechPosI3D: 25998,
SecondaryStockI3D: 7,
State: 4,
StorageName: 'Lehnert Auto',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 4141,
SupplierDeliveryListName: 'Ingram Micro Distributions GmbH',
SupplierDeliveryListNumber: 17145,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '567890uzh',
SupplierNetPriceComplete: 10150.76,
SupplierTaxPriceComplete: 1928.64,
SystemIdentifierNumber: 0,
WarrantyType: 0,
WarrantyValue: 0
}
]
}
@@ -0,0 +1,123 @@
{
Count: 2,
CurrentPage: 1,
PageCount: 1,
Result: [
{
ArticleCode: 'BB892A',
ArticleDescription: 'HP Enterprise StoreOnce 4200/4500 Security Pack LTU\r\nNur Lizenz',
ArticleI3D: 4364,
AufPosI3D: 7315,
BestPosI3D: 4602,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 5908,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: '943BC4C',
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'sadasdasdasDAS',
OrderCustomerI3D: 10000,
OrderCustomerName: 'c-entron software gmbh',
OrderDate: DateTime,
OrderI3D: 4381,
OrderNetPriceComplete: 16112.84,
OrderNumber: 20382,
OrderTaxPriceComplete: 3061.44,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 2,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 4145,
SupplierDeliveryListName: 'Ingram Micro Distributions GmbH',
SupplierDeliveryListNumber: 17149,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '87654321CF',
SupplierNetPriceComplete: 1970.62,
SupplierTaxPriceComplete: 374.42,
SystemIdentifierNumber: 0,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'BB892A',
ArticleDescription: 'HP Enterprise StoreOnce 4200/4500 Security Pack LTU\r\nNur Lizenz',
ArticleI3D: 4364,
AufPosI3D: 7315,
BestPosI3D: 4599,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 5907,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: '943BC4C',
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'asdfsadfasdfasd',
OrderCustomerI3D: 10000,
OrderCustomerName: 'c-entron software gmbh',
OrderDate: DateTime,
OrderI3D: 4381,
OrderNetPriceComplete: 16112.84,
OrderNumber: 20382,
OrderTaxPriceComplete: 3061.44,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 2,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 4144,
SupplierDeliveryListName: 'Ingram Micro Distributions GmbH',
SupplierDeliveryListNumber: 17148,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '87654321CF',
SupplierNetPriceComplete: 2790.90,
SupplierTaxPriceComplete: 530.27,
SystemIdentifierNumber: 0,
WarrantyType: 0,
WarrantyValue: 0
}
]
}
@@ -0,0 +1,6 @@
{
Count: 0,
CurrentPage: 1,
PageCount: 0,
Result: []
}
@@ -0,0 +1,123 @@
{
Count: 2,
CurrentPage: 1,
PageCount: 1,
Result: [
{
ArticleCode: 'BB892A',
ArticleDescription: 'HP Enterprise StoreOnce 4200/4500 Security Pack LTU\r\nNur Lizenz',
ArticleI3D: 4364,
AufPosI3D: 7315,
BestPosI3D: 4602,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 5908,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: '943BC4C',
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'sadasdasdasDAS',
OrderCustomerI3D: 10000,
OrderCustomerName: 'c-entron software gmbh',
OrderDate: DateTime,
OrderI3D: 4381,
OrderNetPriceComplete: 16112.84,
OrderNumber: 20382,
OrderTaxPriceComplete: 3061.44,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 2,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 4145,
SupplierDeliveryListName: 'Ingram Micro Distributions GmbH',
SupplierDeliveryListNumber: 17149,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '87654321CF',
SupplierNetPriceComplete: 1970.62,
SupplierTaxPriceComplete: 374.42,
SystemIdentifierNumber: 0,
WarrantyType: 0,
WarrantyValue: 0
},
{
ArticleCode: 'BB892A',
ArticleDescription: 'HP Enterprise StoreOnce 4200/4500 Security Pack LTU\r\nNur Lizenz',
ArticleI3D: 4364,
AufPosI3D: 7315,
BestPosI3D: 4599,
CreatedAt: DateTime,
DeliveryListCustomerI3D: null,
DeliveryListCustomerName: null,
DeliveryListDate: null,
DeliveryListI3D: null,
DeliveryListNetPriceComplete: null,
DeliveryListNumber: null,
DeliveryListTaxPriceComplete: null,
Description: null,
I3D: 5907,
InvoiceCustomerI3D: null,
InvoiceCustomerName: null,
InvoiceDate: null,
InvoiceI3D: null,
InvoiceNetPriceComplete: null,
InvoiceNumber: null,
InvoiceTaxPriceComplete: null,
IsInRma: false,
Kreditorcode: '943BC4C',
LiefPosI3D: null,
MasterDataListCustomerI3D: null,
MasterDataListCustomerName: null,
MasterDataListDate: null,
MasterDataListI3D: null,
MasterDataListItemI3D: null,
MasterDataListNumber: null,
Name: 'asdfsadfasdfasd',
OrderCustomerI3D: 10000,
OrderCustomerName: 'c-entron software gmbh',
OrderDate: DateTime,
OrderI3D: 4381,
OrderNetPriceComplete: 16112.84,
OrderNumber: 20382,
OrderTaxPriceComplete: 3061.44,
RechPosI3D: null,
SecondaryStockI3D: -1,
State: 2,
StorageName: 'Hauptlager',
SupplierDeliveryListDate: DateTime,
SupplierDeliveryListI3D: 4144,
SupplierDeliveryListName: 'Ingram Micro Distributions GmbH',
SupplierDeliveryListNumber: 17148,
SupplierDeliveryListReceiptDate: DateTime,
SupplierDeliveryListReceiptNumber: '',
SupplierInvoiceReceiptDate: DateTime,
SupplierInvoiceReceiptNumber: '87654321CF',
SupplierNetPriceComplete: 2790.90,
SupplierTaxPriceComplete: 530.27,
SystemIdentifierNumber: 0,
WarrantyType: 0,
WarrantyValue: 0
}
]
}