Mittelpunkt: Zugriff auf SettingsLogic.AddToUsersHistory und Varfield noch deaktivieren

This commit is contained in:
2025-10-20 20:11:25 +02:00
parent 025e20ea84
commit 95b6342d73
2 changed files with 5 additions and 1 deletions

View File

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

View File

@@ -26,7 +26,9 @@ namespace Mittelpunkt.Service
currentContract.HourlyRate = Math.Round((decimal) stundensatz, 2, MidpointRounding.AwayFromZero);
DAOFactory.GenericDAO.Update(employee);
SettingsLogic.AddToUsersHistory<Employee>(eOid);
// erst nach Serverlieferung
//SettingsLogic.AddToUsersHistory<Employee>(eOid);
}
}
}