MalteserJohanniterJohanneshaus - Abwesenheitstabelle

This commit is contained in:
2024-10-08 15:10:56 +02:00
parent f6ba4fa6e7
commit c6f0e4d61d
2 changed files with 13 additions and 1 deletions

View File

@@ -249,6 +249,18 @@ namespace BeWo.Report.ReportObjects
{
SetInfo(dt, row, "U");
}
else if (name.Contains("unentschuldigt"))
{
SetInfo(dt, row, "UE");
}
else if (name.Contains("entschuldigt"))
{
SetInfo(dt, row, "E");
}
else if (name.Contains("corona"))
{
SetInfo(dt, row, "C");
}
else //(name.Contains("krank"))
{
SetInfo(dt, row, "K");

View File

@@ -18,7 +18,7 @@ using DevExpress.XtraReports.UI;
namespace MalteserJohanniterJohanneshaus
{
public class IntegraReportCreator : DefaultReportCreator
public class CustomReportCreator : DefaultReportCreator
{
public override XtraReport CreateAdditionalServiceBookingReport(long addServiceRegionOid, Monat month, int year)
{