MH: NOUS neue Leistung

This commit is contained in:
2024-02-26 15:37:40 +01:00
parent 7e5da94c94
commit cca83d5425
2 changed files with 11 additions and 0 deletions

View File

@@ -146,6 +146,11 @@ namespace Nous.Invoicing
ii.UnitDescription = "3 Schulbegleitung nach §35a SGB VIII";
}
}
else if(ii.ItemDescription.ToLower().Contains("aft"))
{
ii.ItemDescription = "Aufsuchende Familientherapie nach §27 Abs. 3 SGB VIII";
ii.UnitDescription = "Aufsuchende Familientherapie nach §27 Abs. 3 SGB VIII";
}
ii.Notice = iServiceRecord.Employee.LastName;

View File

@@ -131,6 +131,12 @@ namespace Nous
ii.ServiceDescription = "Assistenzkraft";
}
}
// AFT
else if (ii.ServiceDescription.Contains("Aufsuchende Familientherapie nach §27 Abs. 3 SGB VIII"))
{
this.lblTitel.Text = "Rechnung \r\nMonat [AccountingPeriodStart!MMMM yyyy] Aufsuchende Familientherapie nach §27 Abs. 3 SGB VIII für\r\n[CustomerLastName], [CustomerFirstName] geb.: [CustomerBirthdate!dd.MM.yyyy]";
ii.ServiceDescription = "Fachkraft";
}
else if (ii.ServiceDescription.Contains("Schul"))
{
this.lblTitel.Text = "Rechnung \r\nMonat [AccountingPeriodStart!MMMM yyyy] Inklusionsbegleitung nach §35a SGB VIII für\r\n[CustomerLastName], [CustomerFirstName] geb.: [CustomerBirthdate!dd.MM.yyyy]";