From 95b6342d733ba8dc3bee5401d0d2353fedeaef70 Mon Sep 17 00:00:00 2001 From: Kojo Date: Mon, 20 Oct 2025 20:11:25 +0200 Subject: [PATCH] Mittelpunkt: Zugriff auf SettingsLogic.AddToUsersHistory und Varfield noch deaktivieren --- ReportImp/Mittelpunkt/Lohnliste.cs | 2 ++ ReportImp/Mittelpunkt/Service/CustomEmployeeService.cs | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ReportImp/Mittelpunkt/Lohnliste.cs b/ReportImp/Mittelpunkt/Lohnliste.cs index 2f31d2d1a..89373a9bc 100644 --- a/ReportImp/Mittelpunkt/Lohnliste.cs +++ b/ReportImp/Mittelpunkt/Lohnliste.cs @@ -73,11 +73,13 @@ namespace Mittelpunkt row.Field14 = String.Format("{0:0.00}", c.HourlyRate); } + /* string entgeldStufe = LeseEntgeldstufenVarfield(emp); if (!String.IsNullOrEmpty(entgeldStufe)) { row.Field15 = entgeldStufe; } + */ row.Field16 = emp.Notice2; } } diff --git a/ReportImp/Mittelpunkt/Service/CustomEmployeeService.cs b/ReportImp/Mittelpunkt/Service/CustomEmployeeService.cs index 3ce122109..5d0e9de3c 100644 --- a/ReportImp/Mittelpunkt/Service/CustomEmployeeService.cs +++ b/ReportImp/Mittelpunkt/Service/CustomEmployeeService.cs @@ -26,7 +26,9 @@ namespace Mittelpunkt.Service currentContract.HourlyRate = Math.Round((decimal) stundensatz, 2, MidpointRounding.AwayFromZero); DAOFactory.GenericDAO.Update(employee); - SettingsLogic.AddToUsersHistory(eOid); + + // erst nach Serverlieferung + //SettingsLogic.AddToUsersHistory(eOid); } } }