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,171 @@
using Centron.BusinessLogic;
using Centron.BusinessLogic.MyDay;
using Centron.Data.Entities.Administration.Logins;
using Centron.Interfaces.MyDay;
using Centron.Tests.EndToEnd.Infrastructure;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;
using Centron.Interfaces.BL;
using CentronSoftware.Centron.WebServices.Entities.MyDay;
using Centron.BusinessLogic.Administration.Employees;
using Centron.BusinessLogic.WebServices.Employee;
using Centron.BusinessLogic.EmployeeArea;
using Centron.Data.Entities.EmployeeArea;
using Microsoft.Graph.Models.Security;
namespace Centron.Tests.EndToEnd.Tests.MyDay
{
public class MyDayNotificationsTest : EndToEndTest
{
public MyDayNotificationsTest(ITestOutputHelper testOutputHelper) : base(testOutputHelper)
{
}
private DateTime GetDateTime()
{
var date = DateTime.Today.AddDays(-1);
while (date.DayOfWeek == DayOfWeek.Saturday || date.DayOfWeek == DayOfWeek.Sunday)
{
date = date.AddDays(-1);
}
return date;
}
public override void Execute()
{
this.PrepareDatabase(this.GetLoggedInUser());
this.CheckFinalizeMyDayNotifications(this.GetLoggedInUser(), 1); // Expected: Beside vacation and sicckness has also work item "Meeting" and no finalized day -> Notification
this.UpdateDatabase(this.GetLoggedInUser(34));
this.CheckFinalizeMyDayNotifications(this.GetLoggedInUser(34), 0); // Expected: Only items for vacation and sickness -> No Notification
// Addes test case for Ticket 157349
// Before: MyDayFinalizedDay was only recognized if it was saved between 0:00:00 and 23:59:59 on the last working day.
// Now: MyDayFinalizedDay is recognized when it is saved between 0:00:00 a.m. on the last working day and immediately before the notification check.
this.LateFinalizeMyDayBooking(this.GetLoggedInUser());
this.CheckFinalizeMyDayNotifications(this.GetLoggedInUser(), 0); // Expcted: Finalized day just in time for the work item "Meeting" -> No Notification
}
private void PrepareDatabase(LoggedInUser loggedInUser)
{
using (var session = new BLSession())
{
var settings = session.GetBL<MyDayWebServiceBL>().GetSettings().ThrowIfError();
settings.SendDayNotFinalizedNotifications = true;
session.GetBL<MyDayWebServiceBL>().UpdateSettings(settings).ThrowIfError();
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateWorkItem(new MyDayWorkItemDTO
{
StartTime = this.GetDateTime().AddHours(8),
EndTime = this.GetDateTime().AddHours(17),
BreakTime = TimeSpan.FromHours(1),
EmployeeI3D = loggedInUser.User.Employee.I3D,
Caption = "Sickness",
Type = MyDayWorkItemType.Sickness,
ShowInTimeLine = true
}).ThrowIfError();
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateWorkItem(new MyDayWorkItemDTO
{
StartTime = this.GetDateTime().AddHours(8),
EndTime = this.GetDateTime().AddHours(17),
BreakTime = TimeSpan.FromHours(1),
EmployeeI3D = loggedInUser.User.Employee.I3D,
Caption = "Vacation",
Type = MyDayWorkItemType.Vacation,
ShowInTimeLine = true
}).ThrowIfError();
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateWorkItem(new MyDayWorkItemDTO
{
StartTime = this.GetDateTime().AddHours(8),
EndTime = this.GetDateTime().AddHours(17),
BreakTime = TimeSpan.FromHours(1),
EmployeeI3D = loggedInUser.User.Employee.I3D,
Caption = "Meeting",
Type = MyDayWorkItemType.Meeting,
ShowInTimeLine = true
}).ThrowIfError();
var result = session.GetBL<EmployeeDepartmentBL>().GetEmployeeDepartments2(loggedInUser.User).ThrowIfError();
var employeeDepartment = result.FirstOrDefault();
employeeDepartment.MyDayBegin = this.GetDateTime().AddHours(8);
employeeDepartment.IsMyDayActive = true;
session.GetBL<EmployeeDepartmentBL>().UpdateEmployeeDepartments(loggedInUser.User, result).ThrowIfError();
}
}
private void UpdateDatabase(LoggedInUser loggedInUser)
{
using (var session = new BLSession())
{
var settings = session.GetBL<MyDayWebServiceBL>().GetSettings().ThrowIfError();
settings.SendDayNotFinalizedNotifications = true;
session.GetBL<MyDayWebServiceBL>().UpdateSettings(settings).ThrowIfError();
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateWorkItem(new MyDayWorkItemDTO
{
StartTime = this.GetDateTime().AddHours(8),
EndTime = this.GetDateTime().AddHours(17),
BreakTime = TimeSpan.FromHours(1),
EmployeeI3D = loggedInUser.User.Employee.I3D,
Caption = "Sickness",
Type = MyDayWorkItemType.Sickness,
ShowInTimeLine = true
}).ThrowIfError();
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateWorkItem(new MyDayWorkItemDTO
{
StartTime = this.GetDateTime().AddHours(8),
EndTime = this.GetDateTime().AddHours(17),
BreakTime = TimeSpan.FromHours(1),
EmployeeI3D = loggedInUser.User.Employee.I3D,
Caption = "Vacation",
Type = MyDayWorkItemType.Vacation,
ShowInTimeLine = true
}).ThrowIfError();
var result = session.GetBL<EmployeeDepartmentBL>().GetEmployeeDepartments2(loggedInUser.User).ThrowIfError();
var employeeDepartment = result.FirstOrDefault();
employeeDepartment.MyDayBegin = this.GetDateTime().AddHours(8);
employeeDepartment.IsMyDayActive = true;
session.GetBL<EmployeeDepartmentBL>().UpdateEmployeeDepartments(loggedInUser.User, result).ThrowIfError();
}
}
private void CheckFinalizeMyDayNotifications(LoggedInUser loggedInUser, int expectedNotificationCount)
{
using (var session = new BLSession())
{
var notifications = session.GetBL<MyDayNotificationsWebServiceBL>().GetCurrentNotificationsToSend();
Assert.True(notifications.Where(f => f.EmployeeI3D == loggedInUser.User.Employee.I3D).Count() == expectedNotificationCount);
}
}
private void LateFinalizeMyDayBooking(LoggedInUser loggedInUser)
{
using (var session = new BLSession())
{
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateFinalizedDay(new MyDayFinalizedDayDTO
{
EmployeeI3D = loggedInUser.User.Employee.I3D,
Date = DateTime.Now.AddMinutes(-1),
Comment = "Sorry forgot to do that yesterday!"
}).ThrowIfError();
}
}
}
}
@@ -0,0 +1,246 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Xunit.Abstractions;
using Centron.Tests.EndToEnd.Infrastructure;
using Centron.BusinessLogic;
using Centron.BusinessLogic.MyDay;
using Centron.Data.WebServices.Sales.Support;
using Centron.BusinessLogic.WebServices.Sales.Support;
using Centron.Data.Entities.Administration.Logins;
using Centron.BusinessLogic.EmployeeArea;
using Centron.BusinessLogic.WebServices.Administration.MasterData;
using Centron.Interfaces.MyDay;
using Centron.Data.Entities.Tapi;
using Centron.BusinessLogic.Tapi;
using Centron.BusinessLogic.WebServices.MyCentron;
using CentronSoftware.Centron.WebServices.Entities.MyDay;
using Centron.Data.Entities.MyCentron;
using Centron.Interfaces;
using Centron.Interfaces.BL;
using Centron.Core.Extensions;
namespace Centron.Tests.EndToEnd.Tests.MyDay
{
public class MyDayTests : EndToEndTest
{
private LoggedInUser GetUser(BLSession session) => new LoggedInUser(session.GetBL<AppUserBL>().GetAppUser(f => f.I3D == 11));
private LoggedInUser GetUser()
{
using (var session = new BLSession())
return new LoggedInUser(session.GetBL<AppUserBL>().GetAppUser(f => f.I3D == 11));
}
private readonly int _referenceCustomerI3D = 10000;
private DateTime _baseDate => new DateTime(2020, 1, 1);
public MyDayTests(ITestOutputHelper testOutputHelper)
: base(testOutputHelper)
{
this.Verifier.Settings.IgnoreProperty<HelpdeskTimerDTO>(f => f.CreatedVersion);
}
public override void Execute()
{
return;
// this.PrepareDatabase();
//
// this.GetSettings();
// this.UpdateSettings();
//
// this.GetNewWorkItems();
// this.SaveTimeLine();
// this.GetWorkItems();
// this.GetWorkItemByI3D();
}
private void PrepareDatabase()
{
using (var session = new BLSession())
{
var user = this.GetUser(session);
var employee = session.GetBL<EmployeeWebserviceBL>().GetEmployeePreviews(new List<int>
{
user.User.Employee.I3D
}).ThrowIfError().First();
var helpdeskI3D = 10491;
session.GetBL<HelpdeskTimerWebServiceBL>().SaveHelpdeskTimer(new HelpdeskTimerDTO
{
Start = this._baseDate.AddHours(8),
Stop = this._baseDate.AddHours(9),
Employee = employee,
InternalNote = "Internal note 1",
ExternalNote = "External note 1",
HelpdeskI3D = helpdeskI3D
}, user);
session.GetBL<HelpdeskTimerWebServiceBL>().SaveHelpdeskTimer(new HelpdeskTimerDTO
{
Start = this._baseDate.AddHours(13),
Stop = this._baseDate.AddHours(15),
Employee = employee,
InternalNote = "Internal note 2",
ExternalNote = "External note 2",
HelpdeskI3D = helpdeskI3D,
Calculable = true
}, user);
session.GetBL<PhoneCallBL>().SaveOrUpdateCall(new PhoneCall
{
StartTime = this._baseDate.AddHours(9),
EndTime = this._baseDate.AddHours(10.5),
CallerNumber = "1234",
CallerName = "CallerName",
WasConnected = true,
OwnerI3D = 72,
OwnerKind = CentronObjectKindNumeric.ContactPerson
}, user.User);
session.GetBL<LatestUsedCentronObjectWebServiceBL>().AddComplete(user.User,
LatestUsedCentronObjectKind.Customer,
CentronObjectKindNumeric.Account,
this._referenceCustomerI3D,
"Worked on customer " + this._referenceCustomerI3D,
this._baseDate.AddHours(14),
this._baseDate.AddHours(16));
}
}
private void GetSettings()
{
var settings = this.GetSettingsInternal();
this.Verifier.Verify("Settings", settings);
}
private void UpdateSettings()
{
using (var session = new BLSession())
{
var settings = this.GetSettingsInternal();
settings.EditPeriod = 20;
settings.WorkTimeStart = TimeSpan.FromHours(15);
settings.WorkTimeEnd = TimeSpan.FromHours(18);
settings.BreakDuration = TimeSpan.FromHours(1.5);
settings.SpecialTimeSettings = new List<MyDaySpecialTimeSettingDTO>
{
new MyDaySpecialTimeSettingDTO
{
BreakDuration = TimeSpan.FromHours(1),
WorkTimeStart = TimeSpan.FromHours(7),
WorkTimeEnd = TimeSpan.FromHours(20),
Employees = new List<MyDaySpecialTimeSettingAssignmentDTO>
{
new MyDaySpecialTimeSettingAssignmentDTO
{
EmployeeI3D = this.GetUser(session).User.Employee.I3D
}
}
}
};
settings.SendDayNotFinalizedNotifications = true;
settings.DayNotFinalizedNotificationSendTime = TimeSpan.FromHours(20);
session.GetBL<MyDayWebServiceBL>().UpdateSettings(settings).ThrowIfError();
var updatedSettings = this.GetSettingsInternal();
this.Verifier.Verify("UpdatedSettings", updatedSettings);
}
}
private MyDaySettingsDTO GetSettingsInternal()
{
using (var session = new BLSession())
{
return session.GetBL<MyDayWebServiceBL>().GetSettings().ThrowIfError();
}
}
private void GetNewWorkItems()
{
var newWorkItems = this.GetNewWorkItemsInternal();
this.Verifier.Verify("NewWorkItems", newWorkItems);
}
private void SaveTimeLine()
{
var workItems = this.GetNewWorkItemsInternal();
workItems.Add(new MyDayWorkItemDTO
{
BreakTime = TimeSpan.FromHours(1),
StartTime = this._baseDate.AddHours(20),
EndTime = this._baseDate.AddHours(22),
Caption = "I am a caption",
EmployeeI3D = this.GetUser().User.Employee.I3D,
Type = MyDayWorkItemType.Other,
ShowInTimeLine = true
});
foreach (var currentWorkItem in workItems)
{
using (var session = new BLSession())
{
session.GetBL<MyDayWebServiceBL>().SaveOrUpdateWorkItem(currentWorkItem).ThrowIfError();
}
}
}
private void GetWorkItems()
{
using (var session = new BLSession())
{
var workItems = session.GetBL<MyDayWebServiceBL>().GetWorkItems(new MyDayWorkItemsFilter
{
EmployeeI3Ds = new List<int>
{
this.GetUser(session).User.Employee.I3D
},
StarTime = this._baseDate.StartOfDay(),
EndTime = this._baseDate.EndOfDay(),
IncludeItemsNotShownInTimeLine = true
}, this.GetUser(session)).ThrowIfError();
this.Verifier.Verify("WorkItems", workItems.OrderBy(o => o.I3D));
}
}
private IList<MyDayWorkItemDTO> GetNewWorkItemsInternal()
{
using (var session = new BLSession())
{
return session
.GetBL<MyDayWebServiceBL>()
.GetNewWorkItems(new MyDayWorkItemsFilter
{
EmployeeI3Ds = new List<int>
{
this.GetUser(session).User.Employee.I3D
},
StarTime = this._baseDate.StartOfDay(),
EndTime = this._baseDate.EndOfDay()
}, this.GetUser(session)).ThrowIfError();
}
}
private void GetWorkItemByI3D()
{
using (var session = new BLSession())
{
var workItem = session.GetBL<MyDayWebServiceBL>().GetWorkItemByI3D(5).ThrowIfError();
this.Verifier.Verify("WorkItemByI3D", workItem);
}
}
}
}
@@ -0,0 +1,220 @@
[
{
BatchId: null,
BreakTime: null,
Caption: 'Telefongespräch mit CallerName (1234) .\r\nHerr Mann, Muster\r\nTestkunde GmbH (10018)',
CentronObjectKindNumeric: 7600088,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 0,
IsGenerated: false,
LastEdited: null,
ObjectI3D: 4266,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 17,
UniqueId: 'Telephone4266'
},
{
BatchId: null,
BreakTime: null,
Caption: 'Ticketzeit auf Ticket 12505 von Kunde c-entron software gmbh erfasst.\r\nExternal note 1',
CentronObjectKindNumeric: 4000056,
Comments: [],
ConnectedHelpdeskI3D: 10491,
ConnectedHelpdeskTimer: {
ArticleCode: null,
ArticleDescription: null,
ArticleEmployee: null,
ArticleI3D: 0,
ArticleWorkItemCaption: null,
ArticleWorkItemI3D: null,
Calculable: false,
ContractDisplayText: '',
ContractI3D: 0,
CreatedDate: DateTime,
DeliveryListAssetItemI3D: null,
DeviceI3D: null,
DocumentI3D: null,
Employee: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: 0,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ExternalNote: 'External note 1',
HelpdeskI3D: 10491,
HourlySurchargeRateOverlaps: [],
I3D: 10522,
InternalNote: 'Internal note 1',
InvoiceAssetItemI3D: null,
InvoicePositionI3D: null,
IsAssignedToDeliveryList: false,
IsAssignedToInvoice: false,
IsAssignedToOrder: false,
IsPlanned: false,
IsPrinted: false,
IsSigned: false,
LunchTime: null,
OrderAssetItemI3D: null,
ParentI3D: null,
PlannedDurationInMinutes: null,
ProgressInPercent: null,
ReferenceOrderItemI3D: null,
SentAt: null,
Start: DateTime,
State: 0,
Stop: DateTime,
Timer: 3600,
Type: null
},
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 0,
IsGenerated: false,
LastEdited: null,
ObjectI3D: 10522,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 2,
UniqueId: 'HelpdeskTimeRecording10522'
},
{
BatchId: null,
BreakTime: null,
Caption: 'Ticketzeit auf Ticket 12505 von Kunde c-entron software gmbh erfasst.\r\nExternal note 2',
CentronObjectKindNumeric: 4000056,
Comments: [],
ConnectedHelpdeskI3D: 10491,
ConnectedHelpdeskTimer: {
ArticleCode: null,
ArticleDescription: null,
ArticleEmployee: null,
ArticleI3D: 0,
ArticleWorkItemCaption: null,
ArticleWorkItemI3D: null,
Calculable: true,
ContractDisplayText: '',
ContractI3D: 0,
CreatedDate: DateTime,
DeliveryListAssetItemI3D: null,
DeviceI3D: null,
DocumentI3D: null,
Employee: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: 0,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ExternalNote: 'External note 2',
HelpdeskI3D: 10491,
HourlySurchargeRateOverlaps: [],
I3D: 10523,
InternalNote: 'Internal note 2',
InvoiceAssetItemI3D: null,
InvoicePositionI3D: null,
IsAssignedToDeliveryList: false,
IsAssignedToInvoice: false,
IsAssignedToOrder: false,
IsPlanned: false,
IsPrinted: false,
IsSigned: false,
LunchTime: null,
OrderAssetItemI3D: null,
ParentI3D: null,
PlannedDurationInMinutes: null,
ProgressInPercent: null,
ReferenceOrderItemI3D: null,
SentAt: null,
Start: DateTime,
State: 0,
Stop: DateTime,
Timer: 7200,
Type: null
},
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 0,
IsGenerated: false,
LastEdited: null,
ObjectI3D: 10523,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 27,
UniqueId: 'HelpdeskCalcuableTimeRecording10523'
},
{
BatchId: null,
BreakTime: null,
Caption: 'Worked on customer 10000',
CentronObjectKindNumeric: 7600071,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 0,
IsGenerated: false,
LastEdited: null,
ObjectI3D: 10000,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 15,
UniqueId: 'CustomerRelated26'
}
]
@@ -0,0 +1,190 @@
{
BreakDuration: '01:00:00',
DayNotFinalizedNotificationBody: null,
DayNotFinalizedNotificationSendTime: '08:00:00',
DayNotFinalizedNotificationsTextParameters: [
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@HeutigesDatum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@DatumLang@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Datum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@Vorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@Nachname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@Kurzzeichen@@'
}
],
DayNotFinalizedNotificationSubject: null,
DayNotFinalizedTeamLeaderNotificationBody: null,
DayNotFinalizedTeamLeaderNotificationsTextParameters: [
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@HeutigesDatum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@DatumLang@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Datum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Abteilungsleiter',
Name: '@@Vorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Abteilungsleiter',
Name: '@@Nachname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Abteilungsleiter',
Name: '@@Kurzzeichen@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterListe@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterAnzahl@@'
}
],
DayNotFinalizedTeamLeaderNotificationSubject: null,
DaySummaryBody: null,
DaySummarySubject: null,
DaySummaryTextParameters: [
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@HeutigesDatum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Arbeitszeit@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@ArbeitszeitInProzent@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@ErwarteteArbeitszeit@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Datum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@TerminListe@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterName@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterKurzzeichen@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterVorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterNachname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterNutzerName@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterKurzzeichen@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterNutzerVorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterNutzerNachname@@'
}
],
EditPeriod: null,
IsSimplifiedMyDayNewWorkItemTypesList: false,
SendDayNotFinalizedNotifications: false,
SpecialTimeSettings: [],
WorkTimeEnd: '16:00:00',
WorkTimeStart: '08:00:00'
}
@@ -0,0 +1,205 @@
{
BreakDuration: '01:30:00',
DayNotFinalizedNotificationBody: null,
DayNotFinalizedNotificationSendTime: '20:00:00',
DayNotFinalizedNotificationsTextParameters: [
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@HeutigesDatum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@DatumLang@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Datum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@Vorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@Nachname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@Kurzzeichen@@'
}
],
DayNotFinalizedNotificationSubject: null,
DayNotFinalizedTeamLeaderNotificationBody: null,
DayNotFinalizedTeamLeaderNotificationsTextParameters: [
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@HeutigesDatum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@DatumLang@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Datum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Abteilungsleiter',
Name: '@@Vorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Abteilungsleiter',
Name: '@@Nachname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Abteilungsleiter',
Name: '@@Kurzzeichen@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterListe@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterAnzahl@@'
}
],
DayNotFinalizedTeamLeaderNotificationSubject: null,
DaySummaryBody: null,
DaySummarySubject: null,
DaySummaryTextParameters: [
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@HeutigesDatum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Arbeitszeit@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@ArbeitszeitInProzent@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@ErwarteteArbeitszeit@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@Datum@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Allgemein',
Name: '@@TerminListe@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterName@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterKurzzeichen@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterVorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Mitarbeiter',
Name: '@@MitarbeiterNachname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterNutzerName@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterKurzzeichen@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterNutzerVorname@@'
},
{
AlternativeNames: [],
Description: null,
Group: 'Eingeloggter Nutzer',
Name: '@@EingeloggterNutzerNachname@@'
}
],
EditPeriod: 20,
IsSimplifiedMyDayNewWorkItemTypesList: false,
SendDayNotFinalizedNotifications: true,
SpecialTimeSettings: [
{
BreakDuration: '01:00:00',
Caption: null,
Employees: [
{
EmployeeI3D: 22,
I3D: 1,
SpecialTimeSettingI3D: 0
}
],
I3D: 1,
WorkTimeEnd: '20:00:00',
WorkTimeStart: '07:00:00'
}
],
WorkTimeEnd: '18:00:00',
WorkTimeStart: '15:00:00'
}
@@ -0,0 +1,87 @@
{
BatchId: null,
BreakTime: null,
Caption: 'Ticketzeit auf Ticket 12505 von Kunde c-entron software gmbh erfasst.\r\nExternal note 2',
CentronObjectKindNumeric: 4000056,
Comments: [],
ConnectedHelpdeskI3D: 10491,
ConnectedHelpdeskTimer: {
ArticleCode: null,
ArticleDescription: null,
ArticleEmployee: null,
ArticleI3D: 0,
ArticleWorkItemCaption: null,
ArticleWorkItemI3D: null,
Calculable: true,
ContractDisplayText: '',
ContractI3D: 0,
CreatedDate: DateTime,
DeliveryListAssetItemI3D: null,
DeviceI3D: null,
DocumentI3D: null,
Employee: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: 0,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ExternalNote: 'External note 2',
HelpdeskI3D: 10491,
HourlySurchargeRateOverlaps: [],
I3D: 10523,
InternalNote: 'Internal note 2',
InvoiceAssetItemI3D: null,
InvoicePositionI3D: null,
IsAssignedToDeliveryList: false,
IsAssignedToInvoice: false,
IsAssignedToOrder: false,
IsPlanned: false,
IsPrinted: false,
IsSigned: false,
LunchTime: null,
OrderAssetItemI3D: null,
ParentI3D: null,
PlannedDurationInMinutes: null,
ProgressInPercent: null,
ReferenceOrderItemI3D: null,
SentAt: null,
Start: DateTime,
State: 0,
Stop: DateTime,
Timer: 7200,
Type: null
},
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 5,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 10523,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 27,
UniqueId: 'HelpdeskCalcuableTimeRecording10523'
}
@@ -0,0 +1,286 @@
[
{
BatchId: null,
BreakTime: null,
Caption: 'c-entron software gmbh\r\nListstrasse 1\r\n89079 Ulm\r\n\r\nDrucker schmiert\r\n=== support@c-entron.de === 09.11.17 - 15:24\r\nToner schon mehrfach geschüttelt\r\n=================\r\n\r\n\r\nZusätzliche Informationen :\r\n External note 1 External note 1',
CentronObjectKindNumeric: 0,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 1,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 10449,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 21,
UniqueId: 'OutlookAppointment10449'
},
{
BatchId: null,
BreakTime: null,
Caption: 'c-entron software gmbh\r\nListstrasse 1\r\n89079 Ulm\r\n\r\nDrucker schmiert\r\n=== support@c-entron.de === 09.11.17 - 15:24\r\nToner schon mehrfach geschüttelt\r\n=================\r\n\r\n\r\nZusätzliche Informationen :\r\n External note 2 External note 2',
CentronObjectKindNumeric: 0,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 2,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 10448,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 21,
UniqueId: 'OutlookAppointment10448'
},
{
BatchId: null,
BreakTime: null,
Caption: 'Telefongespräch mit CallerName (1234) .\r\nHerr Mann, Muster\r\nTestkunde GmbH (10018)',
CentronObjectKindNumeric: 7600088,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 3,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 4266,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 17,
UniqueId: 'Telephone4266'
},
{
BatchId: null,
BreakTime: null,
Caption: 'Ticketzeit auf Ticket 12505 von Kunde c-entron software gmbh erfasst.\r\nExternal note 1',
CentronObjectKindNumeric: 4000056,
Comments: [],
ConnectedHelpdeskI3D: 10491,
ConnectedHelpdeskTimer: {
ArticleCode: null,
ArticleDescription: null,
ArticleEmployee: null,
ArticleI3D: 0,
ArticleWorkItemCaption: null,
ArticleWorkItemI3D: null,
Calculable: false,
ContractDisplayText: '',
ContractI3D: 0,
CreatedDate: DateTime,
DeliveryListAssetItemI3D: null,
DeviceI3D: null,
DocumentI3D: null,
Employee: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: 0,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ExternalNote: 'External note 1',
HelpdeskI3D: 10491,
HourlySurchargeRateOverlaps: [],
I3D: 10522,
InternalNote: 'Internal note 1',
InvoiceAssetItemI3D: null,
InvoicePositionI3D: null,
IsAssignedToDeliveryList: false,
IsAssignedToInvoice: false,
IsAssignedToOrder: false,
IsPlanned: false,
IsPrinted: false,
IsSigned: false,
LunchTime: null,
OrderAssetItemI3D: null,
ParentI3D: null,
PlannedDurationInMinutes: null,
ProgressInPercent: null,
ReferenceOrderItemI3D: null,
SentAt: null,
Start: DateTime,
State: 0,
Stop: DateTime,
Timer: 3600,
Type: null
},
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 4,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 10522,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 2,
UniqueId: 'HelpdeskTimeRecording10522'
},
{
BatchId: null,
BreakTime: '00:00:00',
Caption: 'Ticketzeit auf Ticket 12505 von Kunde c-entron software gmbh erfasst.\r\nExternal note 2',
CentronObjectKindNumeric: 4000056,
Comments: [],
ConnectedHelpdeskI3D: 10491,
ConnectedHelpdeskTimer: {
ArticleCode: null,
ArticleDescription: null,
ArticleEmployee: null,
ArticleI3D: 0,
ArticleWorkItemCaption: null,
ArticleWorkItemI3D: null,
Calculable: true,
ContractDisplayText: '',
ContractI3D: 0,
CreatedDate: DateTime,
DeliveryListAssetItemI3D: null,
DeviceI3D: null,
DocumentI3D: null,
Employee: {
Availability: 0,
BranchI3D: 0,
DefaultStorageI3D: null,
Dispatcher: false,
DisplayText: 'Administrator, c-entron (ADMIN)',
Email: 'vertrieb@c-entron.de',
Employeenumber: 0,
FirstName: 'c-entron',
FullName: 'Administrator, c-entron (ADMIN)',
I3D: 22,
IsActive: true,
LastAvailabilityChange: null,
LastName: 'Administrator',
LeavingDate: DateTime,
Phone1: '0731-140399-0',
RemainingDaysOfVacation: 28.0,
ShortSign: 'ADMIN',
State: 1,
SupportLevel: null,
Template1: false,
Template2: false,
Template3: false,
Template4: false,
VacationEntitlement: 30.0
},
ExternalNote: 'External note 2',
HelpdeskI3D: 10491,
HourlySurchargeRateOverlaps: [],
I3D: 10523,
InternalNote: 'Internal note 2',
InvoiceAssetItemI3D: null,
InvoicePositionI3D: null,
IsAssignedToDeliveryList: false,
IsAssignedToInvoice: false,
IsAssignedToOrder: false,
IsPlanned: false,
IsPrinted: false,
IsSigned: false,
LunchTime: null,
OrderAssetItemI3D: null,
ParentI3D: null,
PlannedDurationInMinutes: null,
ProgressInPercent: null,
ReferenceOrderItemI3D: null,
SentAt: null,
Start: DateTime,
State: 0,
Stop: DateTime,
Timer: 7200,
Type: null
},
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 5,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 10523,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 27,
UniqueId: 'HelpdeskCalcuableTimeRecording10523'
},
{
BatchId: null,
BreakTime: null,
Caption: 'Worked on customer 10000',
CentronObjectKindNumeric: 7600071,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 6,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 10000,
Reactions: [],
ShowInTimeLine: false,
StartTime: DateTime,
Type: 15,
UniqueId: 'CustomerRelated26'
},
{
BatchId: null,
BreakTime: '01:00:00',
Caption: 'I am a caption',
CentronObjectKindNumeric: 0,
Comments: [],
ConnectedHelpdeskI3D: null,
ConnectedHelpdeskTimer: null,
DescriptionRTF: null,
EmployeeI3D: 22,
EndTime: DateTime,
Followers: [],
I3D: 7,
IsGenerated: false,
LastEdited: DateTime,
ObjectI3D: 0,
Reactions: [],
ShowInTimeLine: true,
StartTime: DateTime,
Type: 0,
UniqueId: 'Other7'
}
]